Added enter and leave debug prints to `parseBody()`
parent
2cdc53e9b6
commit
88a5c0e482
|
@ -119,6 +119,8 @@ public final class Parser
|
||||||
|
|
||||||
private void parseBody()
|
private void parseBody()
|
||||||
{
|
{
|
||||||
|
gprintln("parseBody(): Enter", DebugType.WARNING);
|
||||||
|
|
||||||
/* TODO: Implement body parsing */
|
/* TODO: Implement body parsing */
|
||||||
nextToken();
|
nextToken();
|
||||||
|
|
||||||
|
@ -191,6 +193,8 @@ public final class Parser
|
||||||
gprintln("Expected closing } but ran out of tokens", DebugType.ERROR);
|
gprintln("Expected closing } but ran out of tokens", DebugType.ERROR);
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
gprintln("parseBody(): Leave", DebugType.WARNING);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void parseFuncDef()
|
private void parseFuncDef()
|
||||||
|
|
Loading…
Reference in New Issue