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

Function fxParseXMLName

modules/piu/PC/Code/piuCodeXML.c:153–162  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

151}
152
153void fxParseXMLName(PiuCodeParser parser)
154{
155 if (fxIsXMLIdentifierFirst(parser->character)) {
156 PiuCodeParserAdvance(parser);
157 while (fxIsXMLIdentifierNext(parser->character))
158 PiuCodeParserAdvance(parser);
159 return;
160 }
161 PiuCodeParserError(parser);
162}
163
164void fxParseXMLProcessingInstruction(PiuCodeParser parser)
165{

Callers 3

fxParseXMLStartTagFunction · 0.85
fxParseXMLStopTagFunction · 0.85

Calls 4

fxIsXMLIdentifierFirstFunction · 0.85
PiuCodeParserAdvanceFunction · 0.85
fxIsXMLIdentifierNextFunction · 0.85
PiuCodeParserErrorFunction · 0.85

Tested by

no test coverage detected