diff options
Diffstat (limited to 'src/server')
| -rw-r--r-- | src/server/ast.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/ast.odin b/src/server/ast.odin index 57cd704..a07f69d 100644 --- a/src/server/ast.odin +++ b/src/server/ast.odin @@ -743,8 +743,8 @@ free_ast_node :: proc(node: ^ast.Node, allocator: mem.Allocator) { free_ast(n.names, allocator) free_ast(n.type, allocator) free_ast(n.default_value, allocator) - //free_ast(n.docs); - //free_ast(n.comment); + free_ast_comment(n.docs, allocator); + free_ast_comment(n.comment, allocator); case ^Field_List: free_ast(n.list, allocator) case ^Typeid_Type: |