Skip to content
Prev Previous commit
Next Next commit
fixing spaces
  • Loading branch information
Net-0 committed Aug 17, 2024
commit 6b8b00d147484682100084e877362f5de7f591e1
6 changes: 3 additions & 3 deletions src/main/jjtree/bsh.jjt
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ void VariableInitializer() :
LOOKAHEAD(3)
ArrayInitializer()
|
Expression()
Expression()
}

void ArrayInitializer() #ArrayInitializer :
Expand Down Expand Up @@ -1168,7 +1168,7 @@ void Arguments() #Arguments :
void ArgumentList() :
{ }
{
Expression()
Expression()
( "," Expression() )*
}

Expand Down Expand Up @@ -1327,7 +1327,7 @@ void StatementExpression() :
us to type arbitrary expressions on the command line, e.g. "1+1;"
We should turn this off in the implementation in strict java mode.
*/
Expression()
Expression()
/*
// This was the original Java grammar.

Expand Down