| 169 | } |
| 170 | |
| 171 | void AddTokenToLastAtom(const InstructionTextToken& token) |
| 172 | { |
| 173 | if (!tokens.empty()) |
| 174 | tokens.push_back(token); |
| 175 | else if (items.empty()) |
| 176 | items.push_back(Item {Atom, {}, {token}, 0}); |
| 177 | else |
| 178 | items.back().AddTokenToLastAtom(token); |
| 179 | } |
| 180 | |
| 181 | void CalculateWidth() |
| 182 | { |
no test coverage detected