Example #1
0
 public static bool IsCharLiteral(Token token)
 {
     return(Recognition.DoesMatch(Pattern.Character, token));
 }
Example #2
0
 public static bool IsCharLiteral(string value)
 {
     return(Recognition.DoesMatch(Pattern.Character, value));
 }
Example #3
0
 public static bool IsStringLiteral(string value)
 {
     return(Recognition.DoesMatch(Pattern.String, value));
 }
Example #4
0
 public static bool IsDecimal(string value)
 {
     return(Recognition.DoesMatch(Pattern.Decimal, value));
 }
Example #5
0
 public static bool IsInteger(string value)
 {
     return(Recognition.DoesMatch(Pattern.Integer, value));
 }
Example #6
0
 public static bool DoesMatch(Regex regex, Token token)
 {
     return(Recognition.DoesMatch(regex, token.Value));
 }