MCPcopy Create free account
hub / github.com/CppCXY/EmmyLuaCodeStyle / isCint

Function isCint

3rd/lua-5.4.3/src/lcode.c:1219–1221  ·  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

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

Callers 1

luaK_indexedFunction · 0.85

Calls 1

luaK_isKintFunction · 0.85

Tested by

no test coverage detected