summaryrefslogtreecommitdiff
path: root/src/parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser.h')
-rw-r--r--src/parser.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/parser.h b/src/parser.h
index 93ea994f..9a65765d 100644
--- a/src/parser.h
+++ b/src/parser.h
@@ -93,6 +93,12 @@ class expr_t::parser_t : public noncopyable
const parse_flags_t& flags) const;
ptr_op_t parse_querycolon_expr(std::istream& in,
const parse_flags_t& flags) const;
+ ptr_op_t parse_comma_expr(std::istream& in,
+ const parse_flags_t& flags) const;
+ ptr_op_t parse_lambda_expr(std::istream& in,
+ const parse_flags_t& flags) const;
+ ptr_op_t parse_assign_expr(std::istream& in,
+ const parse_flags_t& flags) const;
ptr_op_t parse_value_expr(std::istream& in,
const parse_flags_t& flags) const;