public CompilationUnit Parse(string text) { LexReader src = new LexReader(text); HtmlLexer lexer = new HtmlLexer(); TokenCollection tokens = lexer.Lex(src); return(Parse(tokens)); }
public CompilationUnit Parse(string text) { LexReader src = new LexReader(text); HtmlLexer lexer = new HtmlLexer(); TokenCollection tokens = lexer.Lex(src); return Parse(tokens); }
public TokenCollection Lex(LexReader src) { _stack = new Stack<TokenId>(); _tokens = new TokenCollection(); _src = src; _curChar = src.Read(); Lex(); return _tokens; }
public TokenCollection Lex(LexReader src) { _stack = new Stack <TokenId>(); _tokens = new TokenCollection(); _src = src; _curChar = src.Read(); Lex(); return(_tokens); }
public TokenCollection Lex(LexReader src) { TokenCollection tokens = new TokenCollection(); return(tokens); }
public TokenCollection Lex(LexReader src) { TokenCollection tokens = new TokenCollection(); return tokens; }