| 281 | namespace Compiler::Generator |
| 282 | { |
| 283 | void pushInt(CodeContainer& code, Literals& literals, int value) |
| 284 | { |
| 285 | int index = literals.addInteger(value); |
| 286 | opPushInt(code, index); |
| 287 | opFetchIntLiteral(code); |
| 288 | } |
| 289 | |
| 290 | void pushFloat(CodeContainer& code, Literals& literals, float value) |
| 291 | { |
no test coverage detected