Update odin/parser

This commit is contained in:
gingerBill
2021-02-23 14:38:46 +00:00
parent 908a403d78
commit 657c0ac4f5

View File

@@ -2186,6 +2186,8 @@ parse_operand :: proc(p: ^Parser, lhs: bool) -> ^ast.Expr {
rt.type = type;
return rt;
case "force_inline", "force_no_inline":
return parse_inlining_operand(p, lhs, tok);
case:
expr := parse_expr(p, lhs);
te := ast.new(ast.Tag_Expr, tok.pos, expr.pos);