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

Function fxParseJSNumberO

modules/piu/PC/Code/piuCodeJS.c:383–393  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

381}
382
383void fxParseJSNumberO(PiuCodeParser parser)
384{
385 uint32_t c;
386 for (;;) {
387 PiuCodeParserAdvance(parser);
388 c = parser->character;
389 if (('0' <= c) && (c <= '7'))
390 continue;
391 break;
392 }
393}
394
395void fxParseJSNumberX(PiuCodeParser parser)
396{

Callers 1

fxParseJSCodeFunction · 0.85

Calls 1

PiuCodeParserAdvanceFunction · 0.85

Tested by

no test coverage detected