| 342 | } |
| 343 | |
| 344 | bool isPointer ( const TypeInfo * THIS ) { |
| 345 | return (THIS->type==Type::tPointer) && (THIS->dimSize==0); |
| 346 | } |
| 347 | |
| 348 | bool isValidArgumentType ( TypeInfo * argType, TypeInfo * passType ) { |
| 349 | // passing non-ref to ref, or passing not the same type |
no outgoing calls
no test coverage detected