| 36 | value alloc_int32(int inValue) { return value(inValue); } |
| 37 | value alloc_bool(bool inValue) { return value(inValue); } |
| 38 | value alloc_float(double inValue) { return value(inValue); } |
| 39 | |
| 40 | value val_field(value inObject, int inIndex) { return inObject[sIdKeys[inIndex]]; } |
| 41 | void alloc_field(value inObject, int inIndex, value inValue) { inObject.set(sIdKeys[inIndex],inValue); } |