MCPcopy Create free account
hub / github.com/Moddable-OpenSource/moddable / fxContinueStatement

Function fxContinueStatement

xs/sources/xsSyntaxical.c:1464–1476  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1462}
1463
1464void fxContinueStatement(txParser* parser)
1465{
1466 txInteger aLine = parser->states[0].line;
1467 fxMatchToken(parser, XS_TOKEN_CONTINUE);
1468 if ((!parser->states[0].crlf) && (parser->states[0].token == XS_TOKEN_IDENTIFIER)) {
1469 fxPushSymbol(parser, parser->states[0].symbol);
1470 fxGetNextToken(parser);
1471 }
1472 else {
1473 fxPushNULL(parser);
1474 }
1475 fxPushNodeStruct(parser, 1, XS_TOKEN_CONTINUE, aLine);
1476}
1477
1478void fxDebuggerStatement(txParser* parser)
1479{

Callers 1

fxStatementFunction · 0.85

Calls 5

fxMatchTokenFunction · 0.85
fxPushSymbolFunction · 0.85
fxGetNextTokenFunction · 0.85
fxPushNULLFunction · 0.85
fxPushNodeStructFunction · 0.85

Tested by

no test coverage detected