Skip to content

Commit

Permalink
Merge pull request #8 from kniazkov/modifiers
Browse files Browse the repository at this point in the history
'Static' modifier
  • Loading branch information
kniazkov authored Jul 25, 2024
2 parents dc21291 + 9206b8b commit 901af81
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/dsl/uast.dsl
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ Protected <- 0;
Private <- 0;
AccessModifier <- Public | Protected | Private;
Final <- 0;
Modifier <- AccessModifier | Final;
Static <- 0;
Modifier <- AccessModifier | Final | Static;

DataType <- PrimitiveType | Void;
Void <- 0;
Expand Down

0 comments on commit 901af81

Please sign in to comment.