Skip to content

Commit

Permalink
Add "override" before EOF in TS
Browse files Browse the repository at this point in the history
Signed-off-by: GP4cK <gautier.bayzelon@gmail.com>
  • Loading branch information
GP4cK authored and parrt committed Sep 9, 2023
1 parent 65dfe0d commit 98d6fab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export default class <parser.name> extends <superClass; null="Parser"> {
<if(parser.tokens)>
<parser.tokens:{k | public static readonly <k> = <parser.tokens.(k)>;}; separator="\n", wrap, anchor>
<endif>
public static readonly EOF = Token.EOF;
public static override readonly EOF = Token.EOF;
<parser.rules:{r | public static readonly RULE_<r.name> = <r.index>;}; separator="\n", wrap, anchor>
public static readonly literalNames: (string | null)[] = [ <parser.literalNames:{t | <t>}; null="null", separator=", ", wrap, anchor> ];
public static readonly symbolicNames: (string | null)[] = [ <parser.symbolicNames:{t | <t>}; null="null", separator=", ", wrap, anchor> ];
Expand Down

0 comments on commit 98d6fab

Please sign in to comment.