| 296 | { |
| 297 | public: |
| 298 | void *TestLineNumber() |
| 299 | { |
| 300 | asIScriptContext *ctx = asGetActiveContext(); |
| 301 | const char *script_section; |
| 302 | /*int line =*/ ctx->GetLineNumber(0, 0, &script_section); |
| 303 | assert( std::string(script_section) == "a" ); |
| 304 | return 0; |
| 305 | } |
| 306 | }; |
| 307 | |
| 308 | int& foo_opAssign(int val, int* _this) |
nothing calls this directly
no test coverage detected