| 1977 | (is_memory64 ? 4 : 0) | (is_shared ? 2 : 0) | (has_max ? 1 : 0); |
| 1978 | section.emit_u8(limits_byte); |
| 1979 | let emit = val => |
| 1980 | is_memory64 ? section.emit_u64v(val) : section.emit_u32v(val); |
| 1981 | emit(imp.initial); |
| 1982 | if (has_max) emit(imp.maximum); |
| 1983 | } else if (imp.kind == kExternalTable) { |
no test coverage detected