MCPcopy Create free account
hub / github.com/emscripten-core/emscripten / checkInt53

Function checkInt53

src/runtime_debug.js:253–253  ·  view source on GitHub ↗
(value)

Source from the content-addressed store, hash-verified

251var checkInt16 = (value) => checkInt(value, 16, MIN_INT16, MAX_UINT16);
252var checkInt32 = (value) => checkInt(value, 32, MIN_INT32, MAX_UINT32);
253var checkInt53 = (value) => checkInt(value, 53, MIN_INT53, MAX_UINT53);
254var checkInt64 = (value) => checkInt(value, 64, MIN_INT64, MAX_UINT64);
255
256#endif // ASSERTIONS == 2

Callers

nothing calls this directly

Calls 1

checkIntFunction · 0.85

Tested by

no test coverage detected