debug static method

void debug(
  1. Lexeme lexeme,
  2. String string, [
  3. int start = 0
])

Implementation

static void debug(Lexeme lexeme, String string, [int start = 0]) {
  if (lexeme.grammar is DebugGrammar) {
    (lexeme.grammar as DebugGrammar).tokenizing(lexeme, string, start);
  }
}