Beispiel #1
0
 public static bool ShouldParse(this InterpreterRunOptions options) => (options & InterpreterRunOptions.Parse) == InterpreterRunOptions.Parse;
Beispiel #2
0
 public static bool ShouldBind(this InterpreterRunOptions options) => (options & InterpreterRunOptions.Bind) == InterpreterRunOptions.Bind;
Beispiel #3
0
 public static bool ShouldLex(this InterpreterRunOptions options) => (options & InterpreterRunOptions.Lex) == InterpreterRunOptions.Lex;