================ idTypeDef::SuperClass If type is an object, then returns the object's superclass ================ */
| 375 | ================ |
| 376 | */ |
| 377 | idTypeDef *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 | ================ |
no test coverage detected