-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8b0c0e7
commit 2150d52
Showing
4 changed files
with
41 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#include "compiler.h" | ||
|
||
void validator_initialize(struct compile_process* process) | ||
{ | ||
} | ||
|
||
void validator_destruct(struct compile_process* process) | ||
{ | ||
} | ||
|
||
int validate_tree() | ||
{ | ||
return VALIDATOR_ALL_OK; | ||
} | ||
|
||
int validate(struct compile_process* process) | ||
{ | ||
int res = 0; | ||
validator_initialize(process); | ||
res = validate_tree(); | ||
validator_destruct(process); | ||
return res; | ||
} |