diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2020-11-12 15:50:42 +0100 |
|---|---|---|
| committer | DanielGavin <danielgavin5@hotmail.com> | 2020-11-12 15:50:42 +0100 |
| commit | 091efd3e488482a20fc4f3cbf109814e2705d8ef (patch) | |
| tree | 09cb0f43e634824437ea3fa0d27f76349ad0653c /src/common | |
| parent | 2fba6caddadc6d7d10f6af5892de6fd44d2291d4 (diff) | |
can now handle the bad expression where field is in specified in the selector expression.
Diffstat (limited to 'src/common')
| -rw-r--r-- | src/common/ast.odin | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/common/ast.odin b/src/common/ast.odin index 15c4891..cc8ad83 100644 --- a/src/common/ast.odin +++ b/src/common/ast.odin @@ -10,4 +10,8 @@ get_ast_node_string :: proc(node: ^ast.Node, src: [] byte) -> string { free_ast_node :: proc(file: ^ast.Node) { +} + +free_ast_file :: proc(file: ast.File) { + }
\ No newline at end of file |