Skip to content

Commit f3eef6b

Browse files
committed
adding optional inline keyword for callExpressions that got lost in the last changes of the BNF
1 parent b50473c commit f3eef6b

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/com/intellij/plugins/haxe/lang/parser

1 file changed

+1
-1
lines changed

src/main/java/com/intellij/plugins/haxe/lang/parser/haxe.bnf

+1-1
Original file line numberDiff line numberDiff line change
@@ -950,7 +950,7 @@ private newExpressionOrCall ::= newExpression qualifiedReferenceTail?
950950
private qualifiedReferenceTail ::= qualifiedNullSafeReferenceExpression CallArrayOrReferenceExpression*
951951

952952
private callFunctionLiteral ::= functionLiteral callExpression
953-
private callOrArrayTail ::= ( thisSuperAbstractOrReferenceExpression | parenthesizedExpression)
953+
private callOrArrayTail ::= 'inline'? ( thisSuperAbstractOrReferenceExpression | parenthesizedExpression)
954954
private immediateArrayAccess ::= arrayLiteral arrayAccessExpression
955955

956956
// spread operator only allowed as last last argument in calls expressions

0 commit comments

Comments
 (0)