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

Function fxParseJSNumberB

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

Source from the content-addressed store, hash-verified

345}
346
347void fxParseJSNumberB(PiuCodeParser parser)
348{
349 uint32_t c;
350 for (;;) {
351 PiuCodeParserAdvance(parser);
352 c = parser->character;
353 if (('0' <= c) && (c <= '1'))
354 continue;
355 break;
356 }
357}
358
359void fxParseJSNumberE(PiuCodeParser parser, int parseDot)
360{

Callers 1

fxParseJSCodeFunction · 0.85

Calls 1

PiuCodeParserAdvanceFunction · 0.85

Tested by

no test coverage detected