Exemplo n.º 1
0
 public TokenReplacer(LexConfig lexConfig)
 {
     this.lexConfig = lexConfig;
 }
Exemplo n.º 2
0
 public Lexer(LexConfig config, StructureConfig structureConfig)
 {
     m_TokenNizer    = new Tokenizer(config);
     m_TokenReplacer = new TokenReplacer(config);
     m_Structurizer  = new Structurizer(structureConfig);
 }
Exemplo n.º 3
0
 public Tokenizer(LexConfig data)
 {
     m_Config = data;
 }