@neo-one/smart-contract-compiler
Version:
NEO•ONE TypeScript smart contract compiler.
27 lines (25 loc) • 1.5 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.StructuredStorageSlots = exports.ErrorSlots = exports.IterableIteratorSlots = exports.IteratorResultSlots = void 0;
var IteratorResultSlots;
(function (IteratorResultSlots) {
IteratorResultSlots[IteratorResultSlots["done"] = 0] = "done";
IteratorResultSlots[IteratorResultSlots["value"] = 1] = "value";
})(IteratorResultSlots = exports.IteratorResultSlots || (exports.IteratorResultSlots = {}));
var IterableIteratorSlots;
(function (IterableIteratorSlots) {
IterableIteratorSlots[IterableIteratorSlots["next"] = 0] = "next";
IterableIteratorSlots[IterableIteratorSlots["iterator"] = 1] = "iterator";
IterableIteratorSlots[IterableIteratorSlots["internalIterator"] = 2] = "internalIterator";
})(IterableIteratorSlots = exports.IterableIteratorSlots || (exports.IterableIteratorSlots = {}));
var ErrorSlots;
(function (ErrorSlots) {
ErrorSlots[ErrorSlots["message"] = 0] = "message";
})(ErrorSlots = exports.ErrorSlots || (exports.ErrorSlots = {}));
var StructuredStorageSlots;
(function (StructuredStorageSlots) {
StructuredStorageSlots[StructuredStorageSlots["prefix"] = 0] = "prefix";
StructuredStorageSlots[StructuredStorageSlots["size"] = 1] = "size";
StructuredStorageSlots[StructuredStorageSlots["prefixArray"] = 2] = "prefixArray";
})(StructuredStorageSlots = exports.StructuredStorageSlots || (exports.StructuredStorageSlots = {}));
//# sourceMappingURL=Slots.js.map