- Added debug print
This commit is contained in:
Tristan B. Velloza Kildaire 2024-04-17 17:17:33 +02:00
parent 84526582f0
commit e205dc2930
1 changed files with 1 additions and 0 deletions

View File

@ -163,6 +163,7 @@ public final class Parser
getSymbolType(this.prevToken) == SymbolType.MULTI_LINE_COMMENT getSymbolType(this.prevToken) == SymbolType.MULTI_LINE_COMMENT
) )
{ {
DEBUG(format("Parsing a comment from token: '%s'", this.prevToken));
comment = Comment.fromToken(this.prevToken); comment = Comment.fromToken(this.prevToken);
return true; return true;
} }