diff options
author | John Hodge (sonata) <tpg@mutabah.net> | 2015-01-16 09:14:38 +0800 |
---|---|---|
committer | John Hodge (sonata) <tpg@mutabah.net> | 2015-01-16 09:14:38 +0800 |
commit | 80e4060188913eb12ad8a774b07d3b938485a49a (patch) | |
tree | f8e978f4c1c93920aa16119199cf728b36915121 /src/ast/expr.cpp | |
parent | 7d04ce9d4c945cedf08ff2a7fa0af49ea4e6e1b0 (diff) | |
download | mrust-80e4060188913eb12ad8a774b07d3b938485a49a.tar.gz |
Added associated type reference parse, and tuple value parse
Diffstat (limited to 'src/ast/expr.cpp')
-rw-r--r-- | src/ast/expr.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ast/expr.cpp b/src/ast/expr.cpp index a5401fef..b125eea3 100644 --- a/src/ast/expr.cpp +++ b/src/ast/expr.cpp @@ -63,6 +63,10 @@ void ExprNode_StructLiteral::visit(NodeVisitor& nv) { nv.visit(*this); } +void ExprNode_Tuple::visit(NodeVisitor& nv) { + nv.visit(*this); +} + void ExprNode_NamedValue::visit(NodeVisitor& nv) { nv.visit(*this); } |