Functions used to add node for constant numbers of different type
| 615 | |
| 616 | // Functions used to add node for constant numbers of different type |
| 617 | void AddNumberNodeChar(const char* pos) |
| 618 | { |
| 619 | CodeInfo::lastKnownStartPos = pos + 1; |
| 620 | char res = pos[1]; |
| 621 | if(res == '\\') |
| 622 | res = UnescapeSybmol(pos[2]); |
| 623 | CodeInfo::nodeList.push_back(new NodeNumber(int(res), typeChar)); |
| 624 | } |
| 625 | |
| 626 | void AddNumberNodeInt(const char* pos) |
| 627 | { |
no test coverage detected