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

Function fxParseXMLComment

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

Source from the content-addressed store, hash-verified

109}
110
111void fxParseXMLComment(PiuCodeParser parser)
112{
113 PiuCodeParserColorAt(parser, 3, parser->offset);
114 while (parser->character) {
115 fxParseXMLSpace(parser, NULL);
116 if (parser->character == '-') {
117 PiuCodeParserAdvance(parser);
118 if (parser->character == '-') {
119 PiuCodeParserAdvance(parser);
120 if (parser->character == '>') {
121 PiuCodeParserAdvance(parser);
122 break;
123 }
124 }
125 }
126 PiuCodeParserAdvance(parser);
127 }
128}
129
130void fxParseXMLData(PiuCodeParser parser)
131{

Callers 1

PiuCodeFormatXMLFunction · 0.85

Calls 3

PiuCodeParserColorAtFunction · 0.85
fxParseXMLSpaceFunction · 0.85
PiuCodeParserAdvanceFunction · 0.85

Tested by

no test coverage detected