Exemple #1
0
 public static bool IsSymbol(string arg)
 {
     return(Keywords.IsKeyword(arg) || Operators.IsOperator(arg) || Types.IsType(arg));
 }
Exemple #2
0
 public static bool IsOperator(string arg)
 {
     return(Operators.IsOperator(arg));
 }