| 624 | } |
| 625 | |
| 626 | void AddNumberNodeInt(const char* pos) |
| 627 | { |
| 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)); |
no test coverage detected