MCPcopy Create free account
hub / github.com/dhewm/dhewm3 / SuperClass

Method SuperClass

neo/d3xp/script/Script_Program.cpp:377–383  ·  view source on GitHub ↗

================ idTypeDef::SuperClass If type is an object, then returns the object's superclass ================ */

Source from the content-addressed store, hash-verified

375================
376*/
377idTypeDef *idTypeDef::SuperClass( void ) const {
378 if ( type != ev_object ) {
379 throw idCompileError( "idTypeDef::SuperClass : tried to get superclass of a non-object type" );
380 }
381
382 return auxType;
383}
384
385/*
386================

Callers 5

GetVariableMethod · 0.45
FindFunctionMethod · 0.45
LookupDefMethod · 0.45
ParseFunctionDefMethod · 0.45
GetRegisterValueMethod · 0.45

Calls 1

idCompileErrorClass · 0.70

Tested by

no test coverage detected