public static void IsValid(PhpTokenType expectedTokenType, string actualText) { IsValid(new TokenPairs { { PhpTokenType.OpenTag, "<?" }, { PhpTokenType.WhiteSpace, " " }, { expectedTokenType, actualText }, { PhpTokenType.CloseTag, "?>" } }); }
public PhpToken(PhpTokenType tokenType, string lexeme, int index) { TokenType = tokenType; Lexeme = lexeme; Index = index; }