blob: 6984a193569f5ecb2f1956188d9364e88dc058cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
"use strict";
/**
* @author jdiaz5513
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ArenaAllocationResult = void 0;
const tslib_1 = require("tslib");
const debug_1 = tslib_1.__importDefault(require("debug"));
const trace = debug_1.default("capnp:serialization:arena:arena-allocation-result");
trace("load");
class ArenaAllocationResult {
constructor(id, buffer) {
this.id = id;
this.buffer = buffer;
trace("new", this);
}
}
exports.ArenaAllocationResult = ArenaAllocationResult;
//# sourceMappingURL=arena-allocation-result.js.map
|