Skip to content

Commit

Permalink
Disable settings screen, fix more parsing issues
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielSchiavini committed Jul 15, 2024
1 parent d20c7ea commit 63d99cd
Show file tree
Hide file tree
Showing 20 changed files with 1,104 additions and 678 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ IDENTIFIER=([A-Za-z_][a-zA-Z_0-9]*)
"(" { return LPAREN; }
")" { return RPAREN; }
"..." { return ELLIPSIS; }
":=" { return WALRUS; }
"+" { return PLUS; }
"-" { return MINUS; }
"*" { return MULT; }
Expand Down Expand Up @@ -89,17 +90,21 @@ IDENTIFIER=([A-Za-z_][a-zA-Z_0-9]*)
"&" { return AMPERSAND; }
"|" { return PIPE; }
"^" { return CARET; }
"bound" { return BOUND; }
"String" { return STRING; }
"Bytes" { return BYTES; }
"DynArray" { return DYNARRAY; }
"HashMap" { return HASHMAP; }
"constant" { return CONSTANT; }
"public" { return PUBLIC; }
"immutable" { return IMMUTABLE; }
"from" { return FROM; }
"import" { return IMPORT; }
"as" { return AS; }
"from" { return FROM; }
"implements" { return IMPLEMENTS; }
"uses" { return USES; }
"exports" { return EXPORTS; }
"initializes" { return INITIALIZES; }
"interface" { return INTERFACE; }
"def" { return DEF; }
"pure" { return PURE; }
Expand All @@ -124,7 +129,7 @@ IDENTIFIER=([A-Za-z_][a-zA-Z_0-9]*)
"break" { return BREAK; }
"return" { return RETURN; }
"raise" { return RAISE; }
"PASS" { return PASS; }
"pass" { return PASS; }
"log" { return LOG; }
"extcall" { return EXTCALL; }
"staticcall" { return STATICCALL; }
Expand Down
946 changes: 495 additions & 451 deletions src/main/gen/org/vyperlang/plugin/grammar/_BaseVyperLexer.java

Large diffs are not rendered by default.

Loading

0 comments on commit 63d99cd

Please sign in to comment.