Add error recovery in function calls to javascript gramamr

This commit is contained in:
Max Brunsfeld 2014-04-24 13:22:54 -07:00
parent 68c26a06b1
commit 61692c8bb1
3 changed files with 5919 additions and 5729 deletions

View file

@ -128,7 +128,7 @@ namespace tree_sitter_examples {
{ "function_call", seq({
sym("expression"),
str("("),
comma_sep(sym("expression")),
comma_sep(err(sym("expression"))),
str(")") }) },
{ "property_access", seq({
sym("expression"),