Removing Terminal type and replacing with Literal, Escape, and AnyChar
This is to eventually simplify the combining of Literals together (and to actually make it work correctly, since terminals should not have been merged)
This commit is contained in:
@@ -6,7 +6,9 @@ import Match from './javascript/match.js';
|
||||
import MatchFragment from './javascript/match_fragment.js';
|
||||
import Subexp from './javascript/subexp.js';
|
||||
import Charset from './javascript/charset.js';
|
||||
import Terminal from './javascript/terminal.js';
|
||||
import Literal from './javascript/literal.js';
|
||||
import Escape from './javascript/escape.js';
|
||||
import AnyCharacter from './javascript/any_character.js';
|
||||
import Repeat from './javascript/repeat.js';
|
||||
import RepeatAny from './javascript/repeat_any.js';
|
||||
import RepeatOptional from './javascript/repeat_optional.js';
|
||||
@@ -19,7 +21,9 @@ parser.Parser.Match = Match;
|
||||
parser.Parser.MatchFragment = MatchFragment;
|
||||
parser.Parser.Subexp = Subexp;
|
||||
parser.Parser.Charset = Charset;
|
||||
parser.Parser.Terminal = Terminal;
|
||||
parser.Parser.Literal = Literal;
|
||||
parser.Parser.Escape = Escape;
|
||||
parser.Parser.AnyCharacter = AnyCharacter;
|
||||
parser.Parser.Repeat = Repeat;
|
||||
parser.Parser.RepeatAny = RepeatAny;
|
||||
parser.Parser.RepeatOptional = RepeatOptional;
|
||||
|
||||
Reference in New Issue
Block a user