| 23 | // --- CppiaModule ---- |
| 24 | |
| 25 | CppiaModule::CppiaModule() |
| 26 | { |
| 27 | main = 0; |
| 28 | layout = 0; |
| 29 | creatingClass = 0; |
| 30 | creatingFunction = 0; |
| 31 | scriptId = ++sScriptId; |
| 32 | strings = Array_obj<String>::__new(0,0); |
| 33 | if (sgNativeNameSlotCount>0) |
| 34 | for(int i=2;i<sgNativeNameSlotCount;i++) |
| 35 | interfaceSlots[sgNativeNameSlots[i]] = i; |
| 36 | |
| 37 | } |
| 38 | |
| 39 | void CppiaModule::setDebug(CppiaExpr *outExpr, int inFileId, int inLine) |
| 40 | { |