| 196 | |
| 197 | |
| 198 | void luaO_arith (lua_State *L, int op, const TValue *p1, const TValue *p2, |
| 199 | StkId res) { |
| 200 | if (!luaO_rawarith(L, op, p1, p2, s2v(res))) { |
| 201 | /* could not perform raw operation; try metamethod */ |
| 202 | luaT_trybinTM(L, p1, p2, res, cast(TMS, (op - LUA_OPADD) + TM_ADD)); |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | |
| 207 | lu_byte luaO_hexavalue (int c) { |
no test coverage detected