MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / isCint

Function isCint

extlibs/lua/src/lcode.c:1220–1222  ·  view source on GitHub ↗

** Check whether expression 'e' is a literal integer in ** proper range to fit in register C */

Source from the content-addressed store, hash-verified

1218** proper range to fit in register C
1219*/
1220static int isCint (expdesc *e) {
1221 return luaK_isKint(e) && (l_castS2U(e->u.ival) <= l_castS2U(MAXARG_C));
1222}
1223
1224
1225/*

Callers 1

luaK_indexedFunction · 0.85

Calls 1

luaK_isKintFunction · 0.85

Tested by

no test coverage detected