| 334 | |
| 335 | |
| 336 | CppiaClassInfo::CppiaClassInfo(CppiaModule &inCppia) : cppia(inCppia) |
| 337 | { |
| 338 | isLinked = false; |
| 339 | haxeBase = 0; |
| 340 | extraData = 0; |
| 341 | containsPointers = false; |
| 342 | classSize = 0; |
| 343 | newFunc = 0; |
| 344 | initExpr = 0; |
| 345 | enumMeta = 0; |
| 346 | isInterface = false; |
| 347 | interfaceSlotSize = 0; |
| 348 | superType = 0; |
| 349 | typeId = 0; |
| 350 | vtable = 0; |
| 351 | type = 0; |
| 352 | mClass.mPtr = 0; |
| 353 | dynamicMapOffset = 0; |
| 354 | haxeBaseVTable = 0; |
| 355 | } |
| 356 | |
| 357 | /* |
| 358 | class CppiaClass *getCppiaClass() |
nothing calls this directly
no outgoing calls
no test coverage detected