| 58 | } |
| 59 | |
| 60 | static bool readNodeType(char &output, const char *&pathDef) { |
| 61 | skipExtraChars(pathDef); |
| 62 | char nodeType = *pathDef; |
| 63 | if (nodeType && nodeType != '+' && nodeType != '-' && nodeType != '.' && nodeType != ',' && (nodeType < '0' || nodeType > '9')) { |
| 64 | ++pathDef; |
| 65 | output = nodeType; |
| 66 | return true; |
| 67 | } |
| 68 | return false; |
| 69 | } |
| 70 | |
| 71 | static bool readDouble(double &output, const char *&pathDef) { |
| 72 | skipExtraChars(pathDef); |
no test coverage detected