diff options
author | John Hodge <tpg@mutabah.net> | 2016-05-20 22:38:34 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-05-20 22:38:34 +0800 |
commit | cca20d66c1f0933b12b4bfd82817aa2cf40b1730 (patch) | |
tree | 26ffdeb83d3b9e3f93f71adb44cf4d0dc50ecc5b /src/hir/expr.cpp | |
parent | d2fcab19c6d8441f1b0610cb2147a43292893764 (diff) | |
download | mrust-cca20d66c1f0933b12b4bfd82817aa2cf40b1730.tar.gz |
Expand+HIR - `?` desugar, closures
Diffstat (limited to 'src/hir/expr.cpp')
-rw-r--r-- | src/hir/expr.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/hir/expr.cpp b/src/hir/expr.cpp index c80d5f61..d42c2678 100644 --- a/src/hir/expr.cpp +++ b/src/hir/expr.cpp @@ -36,5 +36,7 @@ DEF_VISIT(ExprNode_Tuple) DEF_VISIT(ExprNode_ArrayList) DEF_VISIT(ExprNode_ArraySized) +DEF_VISIT(ExprNode_Closure); + #undef DEF_VISIT |