================ idTypeDef::FieldType If type is a field, then returns it's type ================ */
| 420 | ================ |
| 421 | */ |
| 422 | idTypeDef *idTypeDef::FieldType( void ) const { |
| 423 | if ( type != ev_field ) { |
| 424 | throw idCompileError( "idTypeDef::FieldType: tried to get field type on non-field type" ); |
| 425 | } |
| 426 | |
| 427 | return auxType; |
| 428 | } |
| 429 | |
| 430 | /* |
| 431 | ================ |
no test coverage detected