| 628 | CodeInfo::nodeList.push_back(new NodeNumber(parseInteger(pos), typeInt)); |
| 629 | } |
| 630 | void AddNumberNodeFloat(const char* pos) |
| 631 | { |
| 632 | CodeInfo::nodeList.push_back(new NodeNumber((float)parseDouble(pos), typeFloat)); |
| 633 | } |
| 634 | void AddNumberNodeLong(const char* pos, const char* end) |
| 635 | { |
| 636 | CodeInfo::nodeList.push_back(new NodeNumber(parseLong(pos, end, 10), typeLong)); |
no test coverage detected