diff options
Diffstat (limited to 'src/simple_ast.cpp')
-rw-r--r-- | src/simple_ast.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/simple_ast.cpp b/src/simple_ast.cpp index 3027010d1..89b8ce8ed 100644 --- a/src/simple_ast.cpp +++ b/src/simple_ast.cpp @@ -1,6 +1,8 @@ #include "simple_ast.h" +namespace cashew { + // Ref methods Ref& Ref::operator[](unsigned x) { @@ -253,3 +255,5 @@ void traverseFunctions(Ref ast, std::function<void (Ref)> visit) { IStringSet ValueBuilder::statable("assign call binary unary-prefix if name num conditional dot new sub seq string object array"); +} // namespace cashew + |