diff options
Diffstat (limited to 'quickjs.c')
-rw-r--r-- | quickjs.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -22380,7 +22380,8 @@ static int __exception js_parse_property_name(JSParseState *s, if (next_token(s)) goto fail1; if (s->token.val == ':' || s->token.val == ',' || - s->token.val == '}' || s->token.val == '(') { + s->token.val == '}' || s->token.val == '(' || + s->token.val == '=' ) { is_non_reserved_ident = TRUE; goto ident_found; } |