** Convert a BinOpr to a tag method (ORDER OPR - ORDER TM) */
| 1378 | ** Convert a BinOpr to a tag method (ORDER OPR - ORDER TM) |
| 1379 | */ |
| 1380 | l_sinline TMS binopr2TM (BinOpr opr) { |
| 1381 | lua_assert(OPR_ADD <= opr && opr <= OPR_SHR); |
| 1382 | return cast(TMS, (cast_int(opr) - cast_int(OPR_ADD)) + cast_int(TM_ADD)); |
| 1383 | } |
| 1384 | |
| 1385 | |
| 1386 | /* |
no outgoing calls
no test coverage detected