Skip to content

Commit

Permalink
add missing constants
Browse files Browse the repository at this point in the history
  • Loading branch information
ericvergnaud committed Apr 8, 2024
1 parent b486ce7 commit 360c86c
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -870,6 +870,9 @@ import <superClass> from './<superClass>.js';
export default class <lexer.name> extends <superClass; null="Lexer"> {
<lexer.tokens:{k | public static readonly <k> = <lexer.tokens.(k)>;}; separator="\n">
public static readonly EOF = Token.EOF;
<if(lexer.escapedChannels)>
<lexer.escapedChannels:{c| public static readonly <c> = <lexer.escapedChannels.(c)>;}; separator="\n">
<endif>
<rest(lexer.modes):{m | public static readonly <m> = <i>;}; separator="\n">

public static readonly channelNames: string[] = [ "DEFAULT_TOKEN_CHANNEL", "HIDDEN"<if (lexer.channelNames)>, <lexer.channelNames:{c| "<c>"}; separator=", ", wrap, anchor><endif> ];
Expand Down

0 comments on commit 360c86c

Please sign in to comment.