| 175 | |
| 176 | template <int Arg> |
| 177 | int TypeSameAsArg( ASTNode* call ) |
| 178 | { |
| 179 | ASTNode* arg0 = call->GetChildOrNull( Arg ); |
| 180 | if( arg0 == nullptr ) |
| 181 | { |
| 182 | return OP_VOID; |
| 183 | } |
| 184 | return arg0->GetType().builtInType; |
| 185 | } |
| 186 | |
| 187 | |
| 188 | template <int type> |
nothing calls this directly
no test coverage detected