MCPcopy Create free account
hub / github.com/buke/quickjs-go / JS_MKVAL

Function JS_MKVAL

deps/quickjs/quickjs.h:329–335  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

327 return v;
328}
329static inline JSValue JS_MKVAL(int64_t tag, int32_t int32)
330{
331 JSValue v;
332 v.u.int32 = int32;
333 v.tag = tag;
334 return v;
335}
336static inline JSValue JS_MKNAN(void)
337{
338 JSValue v;

Callers 4

__JS_NewFloat64Function · 0.85
JS_NewBoolFunction · 0.85
JS_NewInt32Function · 0.85
JS_NewCatchOffsetFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected