12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.Code = void 0;
- var Code = (function () {
-
- function Code(code, scope) {
- if (!(this instanceof Code))
- return new Code(code, scope);
- this.code = code;
- this.scope = scope;
- }
- Code.prototype.toJSON = function () {
- return { code: this.code, scope: this.scope };
- };
-
- Code.prototype.toExtendedJSON = function () {
- if (this.scope) {
- return { $code: this.code, $scope: this.scope };
- }
- return { $code: this.code };
- };
-
- Code.fromExtendedJSON = function (doc) {
- return new Code(doc.$code, doc.$scope);
- };
-
- Code.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () {
- return this.inspect();
- };
- Code.prototype.inspect = function () {
- var codeJson = this.toJSON();
- return "new Code(\"".concat(String(codeJson.code), "\"").concat(codeJson.scope ? ", ".concat(JSON.stringify(codeJson.scope)) : '', ")");
- };
- return Code;
- }());
- exports.Code = Code;
- Object.defineProperty(Code.prototype, '_bsontype', { value: 'Code' });
|