Skip to content

Commit

Permalink
fixup[2] grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
matheusaaguiar committed Apr 18, 2024
1 parent af97d73 commit 0293833
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion docs/grammar/SolidityLexer.g4
Expand Up @@ -85,7 +85,6 @@ SignedIntegerType:
Storage: 'storage';
String: 'string';
Struct: 'struct';
Transient: 'transient';
True: 'true';
Try: 'try';
Type: 'type';
Expand Down
2 changes: 1 addition & 1 deletion docs/grammar/SolidityParser.g4
Expand Up @@ -274,7 +274,7 @@ locals [boolean constantnessSet = false, boolean visibilitySet = false, boolean
| {!$constantnessSet}? Immutable {$constantnessSet = true;}
)*
(
location=Transient name=identifier
location='transient' name=identifier
| name=identifier
)
(Assign initialValue=expression)?
Expand Down

0 comments on commit 0293833

Please sign in to comment.