From feb815bc1a058b91eed9dea3c5cad8ea52d51806 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Tue, 3 Nov 2020 23:33:30 +0100 Subject: syntax: implement ES6-like arrow function syntax Signed-off-by: Jo-Philipp Wich --- ast.h | 1 + 1 file changed, 1 insertion(+) (limited to 'ast.h') diff --git a/ast.h b/ast.h index da304c7..864e5f9 100644 --- a/ast.h +++ b/ast.h @@ -59,6 +59,7 @@ struct ut_op { uint16_t is_reg_newline:1; uint16_t is_reg_global:1; uint16_t is_ellip:1; + uint16_t is_arrow:1; uint32_t off; struct json_object *val; union { -- cgit v1.2.3