MCPcopy Create free account
hub / github.com/nodejs/node / emit_u16

Method emit_u16

deps/v8/test/mjsunit/wasm/wasm-module-builder.js:1147–1151  ·  view source on GitHub ↗
(val)

Source from the content-addressed store, hash-verified

1145 }
1146
1147 emit_u16(val) {
1148 this.ensure_space(2);
1149 this.buffer[this.length++] = val;
1150 this.buffer[this.length++] = val >> 8;
1151 }
1152
1153 emit_u32(val) {
1154 this.ensure_space(4);

Callers

nothing calls this directly

Calls 1

ensure_spaceMethod · 0.95

Tested by

no test coverage detected