| 4895 | } |
| 4896 | const char *getName() HXCPP_OVERRIDE { return "PosInfo"; } |
| 4897 | CppiaExpr *link(CppiaModule &inModule) HXCPP_OVERRIDE |
| 4898 | { |
| 4899 | String clazz = inModule.strings[classId]; |
| 4900 | String file = inModule.strings[fileId]; |
| 4901 | String method = inModule.strings[methodId]; |
| 4902 | value = hx::SourceInfo(file,line,clazz,method); |
| 4903 | return CppiaExprWithValue::link(inModule); |
| 4904 | } |
| 4905 | |
| 4906 | |
| 4907 | #ifdef CPPIA_JIT |
nothing calls this directly
no test coverage detected