diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-10-31 11:05:05 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-10-31 11:05:05 -0700 |
commit | 3dd389f52b556530ec0514fac67277a41a21b47e (patch) | |
tree | 2a8b758162b5cadaf6004f3ebfe16e6bf11caf0a /src/simple_ast.cpp | |
parent | 2824e966bb1dc9cbc90365b39000540f84fae82c (diff) | |
download | binaryen-3dd389f52b556530ec0514fac67277a41a21b47e.tar.gz binaryen-3dd389f52b556530ec0514fac67277a41a21b47e.tar.bz2 binaryen-3dd389f52b556530ec0514fac67277a41a21b47e.zip |
refactoring
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 + |