12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415 |
- /*! *****************************************************************************
- Copyright (C) Microsoft. All rights reserved.
- Licensed under the Apache License, Version 2.0 (the "License"); you may not use
- this file except in compliance with the License. You may obtain a copy of the
- License at http://www.apache.org/licenses/LICENSE-2.0
- THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
- WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
- MERCHANTABLITY OR NON-INFRINGEMENT.
- See the Apache Version 2.0 License for specific language governing permissions
- and limitations under the License.
- ***************************************************************************** */
- var Reflect;
- (function (Reflect) {
- // Metadata Proposal
- // https://rbuckton.github.io/reflect-metadata/
- (function (factory) {
- var root = typeof globalThis === "object" ? globalThis :
- typeof global === "object" ? global :
- typeof self === "object" ? self :
- typeof this === "object" ? this :
- sloppyModeThis();
- var exporter = makeExporter(Reflect);
- if (typeof root.Reflect !== "undefined") {
- exporter = makeExporter(root.Reflect, exporter);
- }
- factory(exporter, root);
- if (typeof root.Reflect === "undefined") {
- root.Reflect = Reflect;
- }
- function makeExporter(target, previous) {
- return function (key, value) {
- Object.defineProperty(target, key, { configurable: true, writable: true, value: value });
- if (previous)
- previous(key, value);
- };
- }
- function functionThis() {
- try {
- return Function("return this;")();
- }
- catch (_) { }
- }
- function indirectEvalThis() {
- try {
- return (void 0, eval)("(function() { return this; })()");
- }
- catch (_) { }
- }
- function sloppyModeThis() {
- return functionThis() || indirectEvalThis();
- }
- })(function (exporter, root) {
- var hasOwn = Object.prototype.hasOwnProperty;
- // feature test for Symbol support
- var supportsSymbol = typeof Symbol === "function";
- var toPrimitiveSymbol = supportsSymbol && typeof Symbol.toPrimitive !== "undefined" ? Symbol.toPrimitive : "@@toPrimitive";
- var iteratorSymbol = supportsSymbol && typeof Symbol.iterator !== "undefined" ? Symbol.iterator : "@@iterator";
- var supportsCreate = typeof Object.create === "function"; // feature test for Object.create support
- var supportsProto = { __proto__: [] } instanceof Array; // feature test for __proto__ support
- var downLevel = !supportsCreate && !supportsProto;
- var HashMap = {
- // create an object in dictionary mode (a.k.a. "slow" mode in v8)
- create: supportsCreate
- ? function () { return MakeDictionary(Object.create(null)); }
- : supportsProto
- ? function () { return MakeDictionary({ __proto__: null }); }
- : function () { return MakeDictionary({}); },
- has: downLevel
- ? function (map, key) { return hasOwn.call(map, key); }
- : function (map, key) { return key in map; },
- get: downLevel
- ? function (map, key) { return hasOwn.call(map, key) ? map[key] : undefined; }
- : function (map, key) { return map[key]; },
- };
- // Load global or shim versions of Map, Set, and WeakMap
- var functionPrototype = Object.getPrototypeOf(Function);
- var _Map = typeof Map === "function" && typeof Map.prototype.entries === "function" ? Map : CreateMapPolyfill();
- var _Set = typeof Set === "function" && typeof Set.prototype.entries === "function" ? Set : CreateSetPolyfill();
- var _WeakMap = typeof WeakMap === "function" ? WeakMap : CreateWeakMapPolyfill();
- var registrySymbol = supportsSymbol ? Symbol.for("@reflect-metadata:registry") : undefined;
- var metadataRegistry = GetOrCreateMetadataRegistry();
- var metadataProvider = CreateMetadataProvider(metadataRegistry);
- /**
- * Applies a set of decorators to a property of a target object.
- * @param decorators An array of decorators.
- * @param target The target object.
- * @param propertyKey (Optional) The property key to decorate.
- * @param attributes (Optional) The property descriptor for the target key.
- * @remarks Decorators are applied in reverse order.
- * @example
- *
- * class Example {
- * // property declarations are not part of ES6, though they are valid in TypeScript:
- * // static staticProperty;
- * // property;
- *
- * constructor(p) { }
- * static staticMethod(p) { }
- * method(p) { }
- * }
- *
- * // constructor
- * Example = Reflect.decorate(decoratorsArray, Example);
- *
- * // property (on constructor)
- * Reflect.decorate(decoratorsArray, Example, "staticProperty");
- *
- * // property (on prototype)
- * Reflect.decorate(decoratorsArray, Example.prototype, "property");
- *
- * // method (on constructor)
- * Object.defineProperty(Example, "staticMethod",
- * Reflect.decorate(decoratorsArray, Example, "staticMethod",
- * Object.getOwnPropertyDescriptor(Example, "staticMethod")));
- *
- * // method (on prototype)
- * Object.defineProperty(Example.prototype, "method",
- * Reflect.decorate(decoratorsArray, Example.prototype, "method",
- * Object.getOwnPropertyDescriptor(Example.prototype, "method")));
- *
- */
- function decorate(decorators, target, propertyKey, attributes) {
- if (!IsUndefined(propertyKey)) {
- if (!IsArray(decorators))
- throw new TypeError();
- if (!IsObject(target))
- throw new TypeError();
- if (!IsObject(attributes) && !IsUndefined(attributes) && !IsNull(attributes))
- throw new TypeError();
- if (IsNull(attributes))
- attributes = undefined;
- propertyKey = ToPropertyKey(propertyKey);
- return DecorateProperty(decorators, target, propertyKey, attributes);
- }
- else {
- if (!IsArray(decorators))
- throw new TypeError();
- if (!IsConstructor(target))
- throw new TypeError();
- return DecorateConstructor(decorators, target);
- }
- }
- exporter("decorate", decorate);
- // 4.1.2 Reflect.metadata(metadataKey, metadataValue)
- // https://rbuckton.github.io/reflect-metadata/#reflect.metadata
- /**
- * A default metadata decorator factory that can be used on a class, class member, or parameter.
- * @param metadataKey The key for the metadata entry.
- * @param metadataValue The value for the metadata entry.
- * @returns A decorator function.
- * @remarks
- * If `metadataKey` is already defined for the target and target key, the
- * metadataValue for that key will be overwritten.
- * @example
- *
- * // constructor
- * @Reflect.metadata(key, value)
- * class Example {
- * }
- *
- * // property (on constructor, TypeScript only)
- * class Example {
- * @Reflect.metadata(key, value)
- * static staticProperty;
- * }
- *
- * // property (on prototype, TypeScript only)
- * class Example {
- * @Reflect.metadata(key, value)
- * property;
- * }
- *
- * // method (on constructor)
- * class Example {
- * @Reflect.metadata(key, value)
- * static staticMethod() { }
- * }
- *
- * // method (on prototype)
- * class Example {
- * @Reflect.metadata(key, value)
- * method() { }
- * }
- *
- */
- function metadata(metadataKey, metadataValue) {
- function decorator(target, propertyKey) {
- if (!IsObject(target))
- throw new TypeError();
- if (!IsUndefined(propertyKey) && !IsPropertyKey(propertyKey))
- throw new TypeError();
- OrdinaryDefineOwnMetadata(metadataKey, metadataValue, target, propertyKey);
- }
- return decorator;
- }
- exporter("metadata", metadata);
- /**
- * Define a unique metadata entry on the target.
- * @param metadataKey A key used to store and retrieve metadata.
- * @param metadataValue A value that contains attached metadata.
- * @param target The target object on which to define metadata.
- * @param propertyKey (Optional) The property key for the target.
- * @example
- *
- * class Example {
- * // property declarations are not part of ES6, though they are valid in TypeScript:
- * // static staticProperty;
- * // property;
- *
- * constructor(p) { }
- * static staticMethod(p) { }
- * method(p) { }
- * }
- *
- * // constructor
- * Reflect.defineMetadata("custom:annotation", options, Example);
- *
- * // property (on constructor)
- * Reflect.defineMetadata("custom:annotation", options, Example, "staticProperty");
- *
- * // property (on prototype)
- * Reflect.defineMetadata("custom:annotation", options, Example.prototype, "property");
- *
- * // method (on constructor)
- * Reflect.defineMetadata("custom:annotation", options, Example, "staticMethod");
- *
- * // method (on prototype)
- * Reflect.defineMetadata("custom:annotation", options, Example.prototype, "method");
- *
- * // decorator factory as metadata-producing annotation.
- * function MyAnnotation(options): Decorator {
- * return (target, key?) => Reflect.defineMetadata("custom:annotation", options, target, key);
- * }
- *
- */
- function defineMetadata(metadataKey, metadataValue, target, propertyKey) {
- if (!IsObject(target))
- throw new TypeError();
- if (!IsUndefined(propertyKey))
- propertyKey = ToPropertyKey(propertyKey);
- return OrdinaryDefineOwnMetadata(metadataKey, metadataValue, target, propertyKey);
- }
- exporter("defineMetadata", defineMetadata);
- /**
- * Gets a value indicating whether the target object or its prototype chain has the provided metadata key defined.
- * @param metadataKey A key used to store and retrieve metadata.
- * @param target The target object on which the metadata is defined.
- * @param propertyKey (Optional) The property key for the target.
- * @returns `true` if the metadata key was defined on the target object or its prototype chain; otherwise, `false`.
- * @example
- *
- * class Example {
- * // property declarations are not part of ES6, though they are valid in TypeScript:
- * // static staticProperty;
- * // property;
- *
- * constructor(p) { }
- * static staticMethod(p) { }
- * method(p) { }
- * }
- *
- * // constructor
- * result = Reflect.hasMetadata("custom:annotation", Example);
- *
- * // property (on constructor)
- * result = Reflect.hasMetadata("custom:annotation", Example, "staticProperty");
- *
- * // property (on prototype)
- * result = Reflect.hasMetadata("custom:annotation", Example.prototype, "property");
- *
- * // method (on constructor)
- * result = Reflect.hasMetadata("custom:annotation", Example, "staticMethod");
- *
- * // method (on prototype)
- * result = Reflect.hasMetadata("custom:annotation", Example.prototype, "method");
- *
- */
- function hasMetadata(metadataKey, target, propertyKey) {
- if (!IsObject(target))
- throw new TypeError();
- if (!IsUndefined(propertyKey))
- propertyKey = ToPropertyKey(propertyKey);
- return OrdinaryHasMetadata(metadataKey, target, propertyKey);
- }
- exporter("hasMetadata", hasMetadata);
- /**
- * Gets a value indicating whether the target object has the provided metadata key defined.
- * @param metadataKey A key used to store and retrieve metadata.
- * @param target The target object on which the metadata is defined.
- * @param propertyKey (Optional) The property key for the target.
- * @returns `true` if the metadata key was defined on the target object; otherwise, `false`.
- * @example
- *
- * class Example {
- * // property declarations are not part of ES6, though they are valid in TypeScript:
- * // static staticProperty;
- * // property;
- *
- * constructor(p) { }
- * static staticMethod(p) { }
- * method(p) { }
- * }
- *
- * // constructor
- * result = Reflect.hasOwnMetadata("custom:annotation", Example);
- *
- * // property (on constructor)
- * result = Reflect.hasOwnMetadata("custom:annotation", Example, "staticProperty");
- *
- * // property (on prototype)
- * result = Reflect.hasOwnMetadata("custom:annotation", Example.prototype, "property");
- *
- * // method (on constructor)
- * result = Reflect.hasOwnMetadata("custom:annotation", Example, "staticMethod");
- *
- * // method (on prototype)
- * result = Reflect.hasOwnMetadata("custom:annotation", Example.prototype, "method");
- *
- */
- function hasOwnMetadata(metadataKey, target, propertyKey) {
- if (!IsObject(target))
- throw new TypeError();
- if (!IsUndefined(propertyKey))
- propertyKey = ToPropertyKey(propertyKey);
- return OrdinaryHasOwnMetadata(metadataKey, target, propertyKey);
- }
- exporter("hasOwnMetadata", hasOwnMetadata);
- /**
- * Gets the metadata value for the provided metadata key on the target object or its prototype chain.
- * @param metadataKey A key used to store and retrieve metadata.
- * @param target The target object on which the metadata is defined.
- * @param propertyKey (Optional) The property key for the target.
- * @returns The metadata value for the metadata key if found; otherwise, `undefined`.
- * @example
- *
- * class Example {
- * // property declarations are not part of ES6, though they are valid in TypeScript:
- * // static staticProperty;
- * // property;
- *
- * constructor(p) { }
- * static staticMethod(p) { }
- * method(p) { }
- * }
- *
- * // constructor
- * result = Reflect.getMetadata("custom:annotation", Example);
- *
- * // property (on constructor)
- * result = Reflect.getMetadata("custom:annotation", Example, "staticProperty");
- *
- * // property (on prototype)
- * result = Reflect.getMetadata("custom:annotation", Example.prototype, "property");
- *
- * // method (on constructor)
- * result = Reflect.getMetadata("custom:annotation", Example, "staticMethod");
- *
- * // method (on prototype)
- * result = Reflect.getMetadata("custom:annotation", Example.prototype, "method");
- *
- */
- function getMetadata(metadataKey, target, propertyKey) {
- if (!IsObject(target))
- throw new TypeError();
- if (!IsUndefined(propertyKey))
- propertyKey = ToPropertyKey(propertyKey);
- return OrdinaryGetMetadata(metadataKey, target, propertyKey);
- }
- exporter("getMetadata", getMetadata);
- /**
- * Gets the metadata value for the provided metadata key on the target object.
- * @param metadataKey A key used to store and retrieve metadata.
- * @param target The target object on which the metadata is defined.
- * @param propertyKey (Optional) The property key for the target.
- * @returns The metadata value for the metadata key if found; otherwise, `undefined`.
- * @example
- *
- * class Example {
- * // property declarations are not part of ES6, though they are valid in TypeScript:
- * // static staticProperty;
- * // property;
- *
- * constructor(p) { }
- * static staticMethod(p) { }
- * method(p) { }
- * }
- *
- * // constructor
- * result = Reflect.getOwnMetadata("custom:annotation", Example);
- *
- * // property (on constructor)
- * result = Reflect.getOwnMetadata("custom:annotation", Example, "staticProperty");
- *
- * // property (on prototype)
- * result = Reflect.getOwnMetadata("custom:annotation", Example.prototype, "property");
- *
- * // method (on constructor)
- * result = Reflect.getOwnMetadata("custom:annotation", Example, "staticMethod");
- *
- * // method (on prototype)
- * result = Reflect.getOwnMetadata("custom:annotation", Example.prototype, "method");
- *
- */
- function getOwnMetadata(metadataKey, target, propertyKey) {
- if (!IsObject(target))
- throw new TypeError();
- if (!IsUndefined(propertyKey))
- propertyKey = ToPropertyKey(propertyKey);
- return OrdinaryGetOwnMetadata(metadataKey, target, propertyKey);
- }
- exporter("getOwnMetadata", getOwnMetadata);
- /**
- * Gets the metadata keys defined on the target object or its prototype chain.
- * @param target The target object on which the metadata is defined.
- * @param propertyKey (Optional) The property key for the target.
- * @returns An array of unique metadata keys.
- * @example
- *
- * class Example {
- * // property declarations are not part of ES6, though they are valid in TypeScript:
- * // static staticProperty;
- * // property;
- *
- * constructor(p) { }
- * static staticMethod(p) { }
- * method(p) { }
- * }
- *
- * // constructor
- * result = Reflect.getMetadataKeys(Example);
- *
- * // property (on constructor)
- * result = Reflect.getMetadataKeys(Example, "staticProperty");
- *
- * // property (on prototype)
- * result = Reflect.getMetadataKeys(Example.prototype, "property");
- *
- * // method (on constructor)
- * result = Reflect.getMetadataKeys(Example, "staticMethod");
- *
- * // method (on prototype)
- * result = Reflect.getMetadataKeys(Example.prototype, "method");
- *
- */
- function getMetadataKeys(target, propertyKey) {
- if (!IsObject(target))
- throw new TypeError();
- if (!IsUndefined(propertyKey))
- propertyKey = ToPropertyKey(propertyKey);
- return OrdinaryMetadataKeys(target, propertyKey);
- }
- exporter("getMetadataKeys", getMetadataKeys);
- /**
- * Gets the unique metadata keys defined on the target object.
- * @param target The target object on which the metadata is defined.
- * @param propertyKey (Optional) The property key for the target.
- * @returns An array of unique metadata keys.
- * @example
- *
- * class Example {
- * // property declarations are not part of ES6, though they are valid in TypeScript:
- * // static staticProperty;
- * // property;
- *
- * constructor(p) { }
- * static staticMethod(p) { }
- * method(p) { }
- * }
- *
- * // constructor
- * result = Reflect.getOwnMetadataKeys(Example);
- *
- * // property (on constructor)
- * result = Reflect.getOwnMetadataKeys(Example, "staticProperty");
- *
- * // property (on prototype)
- * result = Reflect.getOwnMetadataKeys(Example.prototype, "property");
- *
- * // method (on constructor)
- * result = Reflect.getOwnMetadataKeys(Example, "staticMethod");
- *
- * // method (on prototype)
- * result = Reflect.getOwnMetadataKeys(Example.prototype, "method");
- *
- */
- function getOwnMetadataKeys(target, propertyKey) {
- if (!IsObject(target))
- throw new TypeError();
- if (!IsUndefined(propertyKey))
- propertyKey = ToPropertyKey(propertyKey);
- return OrdinaryOwnMetadataKeys(target, propertyKey);
- }
- exporter("getOwnMetadataKeys", getOwnMetadataKeys);
- /**
- * Deletes the metadata entry from the target object with the provided key.
- * @param metadataKey A key used to store and retrieve metadata.
- * @param target The target object on which the metadata is defined.
- * @param propertyKey (Optional) The property key for the target.
- * @returns `true` if the metadata entry was found and deleted; otherwise, false.
- * @example
- *
- * class Example {
- * // property declarations are not part of ES6, though they are valid in TypeScript:
- * // static staticProperty;
- * // property;
- *
- * constructor(p) { }
- * static staticMethod(p) { }
- * method(p) { }
- * }
- *
- * // constructor
- * result = Reflect.deleteMetadata("custom:annotation", Example);
- *
- * // property (on constructor)
- * result = Reflect.deleteMetadata("custom:annotation", Example, "staticProperty");
- *
- * // property (on prototype)
- * result = Reflect.deleteMetadata("custom:annotation", Example.prototype, "property");
- *
- * // method (on constructor)
- * result = Reflect.deleteMetadata("custom:annotation", Example, "staticMethod");
- *
- * // method (on prototype)
- * result = Reflect.deleteMetadata("custom:annotation", Example.prototype, "method");
- *
- */
- function deleteMetadata(metadataKey, target, propertyKey) {
- if (!IsObject(target))
- throw new TypeError();
- if (!IsUndefined(propertyKey))
- propertyKey = ToPropertyKey(propertyKey);
- if (!IsObject(target))
- throw new TypeError();
- if (!IsUndefined(propertyKey))
- propertyKey = ToPropertyKey(propertyKey);
- var provider = GetMetadataProvider(target, propertyKey, /*Create*/ false);
- if (IsUndefined(provider))
- return false;
- return provider.OrdinaryDeleteMetadata(metadataKey, target, propertyKey);
- }
- exporter("deleteMetadata", deleteMetadata);
- function DecorateConstructor(decorators, target) {
- for (var i = decorators.length - 1; i >= 0; --i) {
- var decorator = decorators[i];
- var decorated = decorator(target);
- if (!IsUndefined(decorated) && !IsNull(decorated)) {
- if (!IsConstructor(decorated))
- throw new TypeError();
- target = decorated;
- }
- }
- return target;
- }
- function DecorateProperty(decorators, target, propertyKey, descriptor) {
- for (var i = decorators.length - 1; i >= 0; --i) {
- var decorator = decorators[i];
- var decorated = decorator(target, propertyKey, descriptor);
- if (!IsUndefined(decorated) && !IsNull(decorated)) {
- if (!IsObject(decorated))
- throw new TypeError();
- descriptor = decorated;
- }
- }
- return descriptor;
- }
- // 3.1.1.1 OrdinaryHasMetadata(MetadataKey, O, P)
- // https://rbuckton.github.io/reflect-metadata/#ordinaryhasmetadata
- function OrdinaryHasMetadata(MetadataKey, O, P) {
- var hasOwn = OrdinaryHasOwnMetadata(MetadataKey, O, P);
- if (hasOwn)
- return true;
- var parent = OrdinaryGetPrototypeOf(O);
- if (!IsNull(parent))
- return OrdinaryHasMetadata(MetadataKey, parent, P);
- return false;
- }
- // 3.1.2.1 OrdinaryHasOwnMetadata(MetadataKey, O, P)
- // https://rbuckton.github.io/reflect-metadata/#ordinaryhasownmetadata
- function OrdinaryHasOwnMetadata(MetadataKey, O, P) {
- var provider = GetMetadataProvider(O, P, /*Create*/ false);
- if (IsUndefined(provider))
- return false;
- return ToBoolean(provider.OrdinaryHasOwnMetadata(MetadataKey, O, P));
- }
- // 3.1.3.1 OrdinaryGetMetadata(MetadataKey, O, P)
- // https://rbuckton.github.io/reflect-metadata/#ordinarygetmetadata
- function OrdinaryGetMetadata(MetadataKey, O, P) {
- var hasOwn = OrdinaryHasOwnMetadata(MetadataKey, O, P);
- if (hasOwn)
- return OrdinaryGetOwnMetadata(MetadataKey, O, P);
- var parent = OrdinaryGetPrototypeOf(O);
- if (!IsNull(parent))
- return OrdinaryGetMetadata(MetadataKey, parent, P);
- return undefined;
- }
- // 3.1.4.1 OrdinaryGetOwnMetadata(MetadataKey, O, P)
- // https://rbuckton.github.io/reflect-metadata/#ordinarygetownmetadata
- function OrdinaryGetOwnMetadata(MetadataKey, O, P) {
- var provider = GetMetadataProvider(O, P, /*Create*/ false);
- if (IsUndefined(provider))
- return;
- return provider.OrdinaryGetOwnMetadata(MetadataKey, O, P);
- }
- // 3.1.5.1 OrdinaryDefineOwnMetadata(MetadataKey, MetadataValue, O, P)
- // https://rbuckton.github.io/reflect-metadata/#ordinarydefineownmetadata
- function OrdinaryDefineOwnMetadata(MetadataKey, MetadataValue, O, P) {
- var provider = GetMetadataProvider(O, P, /*Create*/ true);
- provider.OrdinaryDefineOwnMetadata(MetadataKey, MetadataValue, O, P);
- }
- // 3.1.6.1 OrdinaryMetadataKeys(O, P)
- // https://rbuckton.github.io/reflect-metadata/#ordinarymetadatakeys
- function OrdinaryMetadataKeys(O, P) {
- var ownKeys = OrdinaryOwnMetadataKeys(O, P);
- var parent = OrdinaryGetPrototypeOf(O);
- if (parent === null)
- return ownKeys;
- var parentKeys = OrdinaryMetadataKeys(parent, P);
- if (parentKeys.length <= 0)
- return ownKeys;
- if (ownKeys.length <= 0)
- return parentKeys;
- var set = new _Set();
- var keys = [];
- for (var _i = 0, ownKeys_1 = ownKeys; _i < ownKeys_1.length; _i++) {
- var key = ownKeys_1[_i];
- var hasKey = set.has(key);
- if (!hasKey) {
- set.add(key);
- keys.push(key);
- }
- }
- for (var _a = 0, parentKeys_1 = parentKeys; _a < parentKeys_1.length; _a++) {
- var key = parentKeys_1[_a];
- var hasKey = set.has(key);
- if (!hasKey) {
- set.add(key);
- keys.push(key);
- }
- }
- return keys;
- }
- // 3.1.7.1 OrdinaryOwnMetadataKeys(O, P)
- // https://rbuckton.github.io/reflect-metadata/#ordinaryownmetadatakeys
- function OrdinaryOwnMetadataKeys(O, P) {
- var provider = GetMetadataProvider(O, P, /*create*/ false);
- if (!provider) {
- return [];
- }
- return provider.OrdinaryOwnMetadataKeys(O, P);
- }
- // 6 ECMAScript Data Types and Values
- // https://tc39.github.io/ecma262/#sec-ecmascript-data-types-and-values
- function Type(x) {
- if (x === null)
- return 1 /* Null */;
- switch (typeof x) {
- case "undefined": return 0 /* Undefined */;
- case "boolean": return 2 /* Boolean */;
- case "string": return 3 /* String */;
- case "symbol": return 4 /* Symbol */;
- case "number": return 5 /* Number */;
- case "object": return x === null ? 1 /* Null */ : 6 /* Object */;
- default: return 6 /* Object */;
- }
- }
- // 6.1.1 The Undefined Type
- // https://tc39.github.io/ecma262/#sec-ecmascript-language-types-undefined-type
- function IsUndefined(x) {
- return x === undefined;
- }
- // 6.1.2 The Null Type
- // https://tc39.github.io/ecma262/#sec-ecmascript-language-types-null-type
- function IsNull(x) {
- return x === null;
- }
- // 6.1.5 The Symbol Type
- // https://tc39.github.io/ecma262/#sec-ecmascript-language-types-symbol-type
- function IsSymbol(x) {
- return typeof x === "symbol";
- }
- // 6.1.7 The Object Type
- // https://tc39.github.io/ecma262/#sec-object-type
- function IsObject(x) {
- return typeof x === "object" ? x !== null : typeof x === "function";
- }
- // 7.1 Type Conversion
- // https://tc39.github.io/ecma262/#sec-type-conversion
- // 7.1.1 ToPrimitive(input [, PreferredType])
- // https://tc39.github.io/ecma262/#sec-toprimitive
- function ToPrimitive(input, PreferredType) {
- switch (Type(input)) {
- case 0 /* Undefined */: return input;
- case 1 /* Null */: return input;
- case 2 /* Boolean */: return input;
- case 3 /* String */: return input;
- case 4 /* Symbol */: return input;
- case 5 /* Number */: return input;
- }
- var hint = PreferredType === 3 /* String */ ? "string" : PreferredType === 5 /* Number */ ? "number" : "default";
- var exoticToPrim = GetMethod(input, toPrimitiveSymbol);
- if (exoticToPrim !== undefined) {
- var result = exoticToPrim.call(input, hint);
- if (IsObject(result))
- throw new TypeError();
- return result;
- }
- return OrdinaryToPrimitive(input, hint === "default" ? "number" : hint);
- }
- // 7.1.1.1 OrdinaryToPrimitive(O, hint)
- // https://tc39.github.io/ecma262/#sec-ordinarytoprimitive
- function OrdinaryToPrimitive(O, hint) {
- if (hint === "string") {
- var toString_1 = O.toString;
- if (IsCallable(toString_1)) {
- var result = toString_1.call(O);
- if (!IsObject(result))
- return result;
- }
- var valueOf = O.valueOf;
- if (IsCallable(valueOf)) {
- var result = valueOf.call(O);
- if (!IsObject(result))
- return result;
- }
- }
- else {
- var valueOf = O.valueOf;
- if (IsCallable(valueOf)) {
- var result = valueOf.call(O);
- if (!IsObject(result))
- return result;
- }
- var toString_2 = O.toString;
- if (IsCallable(toString_2)) {
- var result = toString_2.call(O);
- if (!IsObject(result))
- return result;
- }
- }
- throw new TypeError();
- }
- // 7.1.2 ToBoolean(argument)
- // https://tc39.github.io/ecma262/2016/#sec-toboolean
- function ToBoolean(argument) {
- return !!argument;
- }
- // 7.1.12 ToString(argument)
- // https://tc39.github.io/ecma262/#sec-tostring
- function ToString(argument) {
- return "" + argument;
- }
- // 7.1.14 ToPropertyKey(argument)
- // https://tc39.github.io/ecma262/#sec-topropertykey
- function ToPropertyKey(argument) {
- var key = ToPrimitive(argument, 3 /* String */);
- if (IsSymbol(key))
- return key;
- return ToString(key);
- }
- // 7.2 Testing and Comparison Operations
- // https://tc39.github.io/ecma262/#sec-testing-and-comparison-operations
- // 7.2.2 IsArray(argument)
- // https://tc39.github.io/ecma262/#sec-isarray
- function IsArray(argument) {
- return Array.isArray
- ? Array.isArray(argument)
- : argument instanceof Object
- ? argument instanceof Array
- : Object.prototype.toString.call(argument) === "[object Array]";
- }
- // 7.2.3 IsCallable(argument)
- // https://tc39.github.io/ecma262/#sec-iscallable
- function IsCallable(argument) {
- // NOTE: This is an approximation as we cannot check for [[Call]] internal method.
- return typeof argument === "function";
- }
- // 7.2.4 IsConstructor(argument)
- // https://tc39.github.io/ecma262/#sec-isconstructor
- function IsConstructor(argument) {
- // NOTE: This is an approximation as we cannot check for [[Construct]] internal method.
- return typeof argument === "function";
- }
- // 7.2.7 IsPropertyKey(argument)
- // https://tc39.github.io/ecma262/#sec-ispropertykey
- function IsPropertyKey(argument) {
- switch (Type(argument)) {
- case 3 /* String */: return true;
- case 4 /* Symbol */: return true;
- default: return false;
- }
- }
- function SameValueZero(x, y) {
- return x === y || x !== x && y !== y;
- }
- // 7.3 Operations on Objects
- // https://tc39.github.io/ecma262/#sec-operations-on-objects
- // 7.3.9 GetMethod(V, P)
- // https://tc39.github.io/ecma262/#sec-getmethod
- function GetMethod(V, P) {
- var func = V[P];
- if (func === undefined || func === null)
- return undefined;
- if (!IsCallable(func))
- throw new TypeError();
- return func;
- }
- // 7.4 Operations on Iterator Objects
- // https://tc39.github.io/ecma262/#sec-operations-on-iterator-objects
- function GetIterator(obj) {
- var method = GetMethod(obj, iteratorSymbol);
- if (!IsCallable(method))
- throw new TypeError(); // from Call
- var iterator = method.call(obj);
- if (!IsObject(iterator))
- throw new TypeError();
- return iterator;
- }
- // 7.4.4 IteratorValue(iterResult)
- // https://tc39.github.io/ecma262/2016/#sec-iteratorvalue
- function IteratorValue(iterResult) {
- return iterResult.value;
- }
- // 7.4.5 IteratorStep(iterator)
- // https://tc39.github.io/ecma262/#sec-iteratorstep
- function IteratorStep(iterator) {
- var result = iterator.next();
- return result.done ? false : result;
- }
- // 7.4.6 IteratorClose(iterator, completion)
- // https://tc39.github.io/ecma262/#sec-iteratorclose
- function IteratorClose(iterator) {
- var f = iterator["return"];
- if (f)
- f.call(iterator);
- }
- // 9.1 Ordinary Object Internal Methods and Internal Slots
- // https://tc39.github.io/ecma262/#sec-ordinary-object-internal-methods-and-internal-slots
- // 9.1.1.1 OrdinaryGetPrototypeOf(O)
- // https://tc39.github.io/ecma262/#sec-ordinarygetprototypeof
- function OrdinaryGetPrototypeOf(O) {
- var proto = Object.getPrototypeOf(O);
- if (typeof O !== "function" || O === functionPrototype)
- return proto;
- // TypeScript doesn't set __proto__ in ES5, as it's non-standard.
- // Try to determine the superclass constructor. Compatible implementations
- // must either set __proto__ on a subclass constructor to the superclass constructor,
- // or ensure each class has a valid `constructor` property on its prototype that
- // points back to the constructor.
- // If this is not the same as Function.[[Prototype]], then this is definately inherited.
- // This is the case when in ES6 or when using __proto__ in a compatible browser.
- if (proto !== functionPrototype)
- return proto;
- // If the super prototype is Object.prototype, null, or undefined, then we cannot determine the heritage.
- var prototype = O.prototype;
- var prototypeProto = prototype && Object.getPrototypeOf(prototype);
- if (prototypeProto == null || prototypeProto === Object.prototype)
- return proto;
- // If the constructor was not a function, then we cannot determine the heritage.
- var constructor = prototypeProto.constructor;
- if (typeof constructor !== "function")
- return proto;
- // If we have some kind of self-reference, then we cannot determine the heritage.
- if (constructor === O)
- return proto;
- // we have a pretty good guess at the heritage.
- return constructor;
- }
- // Global metadata registry
- // - Allows `import "reflect-metadata"` and `import "reflect-metadata/no-conflict"` to interoperate.
- // - Uses isolated metadata if `Reflect` is frozen before the registry can be installed.
- /**
- * Creates a registry used to allow multiple `reflect-metadata` providers.
- */
- function CreateMetadataRegistry() {
- var fallback;
- if (!IsUndefined(registrySymbol) &&
- typeof root.Reflect !== "undefined" &&
- !(registrySymbol in root.Reflect) &&
- typeof root.Reflect.defineMetadata === "function") {
- // interoperate with older version of `reflect-metadata` that did not support a registry.
- fallback = CreateFallbackProvider(root.Reflect);
- }
- var first;
- var second;
- var rest;
- var targetProviderMap = new _WeakMap();
- var registry = {
- registerProvider: registerProvider,
- getProvider: getProvider,
- setProvider: setProvider,
- };
- return registry;
- function registerProvider(provider) {
- if (!Object.isExtensible(registry)) {
- throw new Error("Cannot add provider to a frozen registry.");
- }
- switch (true) {
- case fallback === provider: break;
- case IsUndefined(first):
- first = provider;
- break;
- case first === provider: break;
- case IsUndefined(second):
- second = provider;
- break;
- case second === provider: break;
- default:
- if (rest === undefined)
- rest = new _Set();
- rest.add(provider);
- break;
- }
- }
- function getProviderNoCache(O, P) {
- if (!IsUndefined(first)) {
- if (first.isProviderFor(O, P))
- return first;
- if (!IsUndefined(second)) {
- if (second.isProviderFor(O, P))
- return first;
- if (!IsUndefined(rest)) {
- var iterator = GetIterator(rest);
- while (true) {
- var next = IteratorStep(iterator);
- if (!next) {
- return undefined;
- }
- var provider = IteratorValue(next);
- if (provider.isProviderFor(O, P)) {
- IteratorClose(iterator);
- return provider;
- }
- }
- }
- }
- }
- if (!IsUndefined(fallback) && fallback.isProviderFor(O, P)) {
- return fallback;
- }
- return undefined;
- }
- function getProvider(O, P) {
- var providerMap = targetProviderMap.get(O);
- var provider;
- if (!IsUndefined(providerMap)) {
- provider = providerMap.get(P);
- }
- if (!IsUndefined(provider)) {
- return provider;
- }
- provider = getProviderNoCache(O, P);
- if (!IsUndefined(provider)) {
- if (IsUndefined(providerMap)) {
- providerMap = new _Map();
- targetProviderMap.set(O, providerMap);
- }
- providerMap.set(P, provider);
- }
- return provider;
- }
- function hasProvider(provider) {
- if (IsUndefined(provider))
- throw new TypeError();
- return first === provider || second === provider || !IsUndefined(rest) && rest.has(provider);
- }
- function setProvider(O, P, provider) {
- if (!hasProvider(provider)) {
- throw new Error("Metadata provider not registered.");
- }
- var existingProvider = getProvider(O, P);
- if (existingProvider !== provider) {
- if (!IsUndefined(existingProvider)) {
- return false;
- }
- var providerMap = targetProviderMap.get(O);
- if (IsUndefined(providerMap)) {
- providerMap = new _Map();
- targetProviderMap.set(O, providerMap);
- }
- providerMap.set(P, provider);
- }
- return true;
- }
- }
- /**
- * Gets or creates the shared registry of metadata providers.
- */
- function GetOrCreateMetadataRegistry() {
- var metadataRegistry;
- if (!IsUndefined(registrySymbol) && IsObject(root.Reflect) && Object.isExtensible(root.Reflect)) {
- metadataRegistry = root.Reflect[registrySymbol];
- }
- if (IsUndefined(metadataRegistry)) {
- metadataRegistry = CreateMetadataRegistry();
- }
- if (!IsUndefined(registrySymbol) && IsObject(root.Reflect) && Object.isExtensible(root.Reflect)) {
- Object.defineProperty(root.Reflect, registrySymbol, {
- enumerable: false,
- configurable: false,
- writable: false,
- value: metadataRegistry
- });
- }
- return metadataRegistry;
- }
- function CreateMetadataProvider(registry) {
- // [[Metadata]] internal slot
- // https://rbuckton.github.io/reflect-metadata/#ordinary-object-internal-methods-and-internal-slots
- var metadata = new _WeakMap();
- var provider = {
- isProviderFor: function (O, P) {
- var targetMetadata = metadata.get(O);
- if (IsUndefined(targetMetadata))
- return false;
- return targetMetadata.has(P);
- },
- OrdinaryDefineOwnMetadata: OrdinaryDefineOwnMetadata,
- OrdinaryHasOwnMetadata: OrdinaryHasOwnMetadata,
- OrdinaryGetOwnMetadata: OrdinaryGetOwnMetadata,
- OrdinaryOwnMetadataKeys: OrdinaryOwnMetadataKeys,
- OrdinaryDeleteMetadata: OrdinaryDeleteMetadata,
- };
- metadataRegistry.registerProvider(provider);
- return provider;
- function GetOrCreateMetadataMap(O, P, Create) {
- var targetMetadata = metadata.get(O);
- var createdTargetMetadata = false;
- if (IsUndefined(targetMetadata)) {
- if (!Create)
- return undefined;
- targetMetadata = new _Map();
- metadata.set(O, targetMetadata);
- createdTargetMetadata = true;
- }
- var metadataMap = targetMetadata.get(P);
- if (IsUndefined(metadataMap)) {
- if (!Create)
- return undefined;
- metadataMap = new _Map();
- targetMetadata.set(P, metadataMap);
- if (!registry.setProvider(O, P, provider)) {
- targetMetadata.delete(P);
- if (createdTargetMetadata) {
- metadata.delete(O);
- }
- throw new Error("Wrong provider for target.");
- }
- }
- return metadataMap;
- }
- // 3.1.2.1 OrdinaryHasOwnMetadata(MetadataKey, O, P)
- // https://rbuckton.github.io/reflect-metadata/#ordinaryhasownmetadata
- function OrdinaryHasOwnMetadata(MetadataKey, O, P) {
- var metadataMap = GetOrCreateMetadataMap(O, P, /*Create*/ false);
- if (IsUndefined(metadataMap))
- return false;
- return ToBoolean(metadataMap.has(MetadataKey));
- }
- // 3.1.4.1 OrdinaryGetOwnMetadata(MetadataKey, O, P)
- // https://rbuckton.github.io/reflect-metadata/#ordinarygetownmetadata
- function OrdinaryGetOwnMetadata(MetadataKey, O, P) {
- var metadataMap = GetOrCreateMetadataMap(O, P, /*Create*/ false);
- if (IsUndefined(metadataMap))
- return undefined;
- return metadataMap.get(MetadataKey);
- }
- // 3.1.5.1 OrdinaryDefineOwnMetadata(MetadataKey, MetadataValue, O, P)
- // https://rbuckton.github.io/reflect-metadata/#ordinarydefineownmetadata
- function OrdinaryDefineOwnMetadata(MetadataKey, MetadataValue, O, P) {
- var metadataMap = GetOrCreateMetadataMap(O, P, /*Create*/ true);
- metadataMap.set(MetadataKey, MetadataValue);
- }
- // 3.1.7.1 OrdinaryOwnMetadataKeys(O, P)
- // https://rbuckton.github.io/reflect-metadata/#ordinaryownmetadatakeys
- function OrdinaryOwnMetadataKeys(O, P) {
- var keys = [];
- var metadataMap = GetOrCreateMetadataMap(O, P, /*Create*/ false);
- if (IsUndefined(metadataMap))
- return keys;
- var keysObj = metadataMap.keys();
- var iterator = GetIterator(keysObj);
- var k = 0;
- while (true) {
- var next = IteratorStep(iterator);
- if (!next) {
- keys.length = k;
- return keys;
- }
- var nextValue = IteratorValue(next);
- try {
- keys[k] = nextValue;
- }
- catch (e) {
- try {
- IteratorClose(iterator);
- }
- finally {
- throw e;
- }
- }
- k++;
- }
- }
- function OrdinaryDeleteMetadata(MetadataKey, O, P) {
- var metadataMap = GetOrCreateMetadataMap(O, P, /*Create*/ false);
- if (IsUndefined(metadataMap))
- return false;
- if (!metadataMap.delete(MetadataKey))
- return false;
- if (metadataMap.size === 0) {
- var targetMetadata = metadata.get(O);
- if (!IsUndefined(targetMetadata)) {
- targetMetadata.delete(P);
- if (targetMetadata.size === 0) {
- metadata.delete(targetMetadata);
- }
- }
- }
- return true;
- }
- }
- function CreateFallbackProvider(reflect) {
- var defineMetadata = reflect.defineMetadata, hasOwnMetadata = reflect.hasOwnMetadata, getOwnMetadata = reflect.getOwnMetadata, getOwnMetadataKeys = reflect.getOwnMetadataKeys, deleteMetadata = reflect.deleteMetadata;
- var metadataOwner = new _WeakMap();
- var provider = {
- isProviderFor: function (O, P) {
- var metadataPropertySet = metadataOwner.get(O);
- if (!IsUndefined(metadataPropertySet) && metadataPropertySet.has(P)) {
- return true;
- }
- if (getOwnMetadataKeys(O, P).length) {
- if (IsUndefined(metadataPropertySet)) {
- metadataPropertySet = new _Set();
- metadataOwner.set(O, metadataPropertySet);
- }
- metadataPropertySet.add(P);
- return true;
- }
- return false;
- },
- OrdinaryDefineOwnMetadata: defineMetadata,
- OrdinaryHasOwnMetadata: hasOwnMetadata,
- OrdinaryGetOwnMetadata: getOwnMetadata,
- OrdinaryOwnMetadataKeys: getOwnMetadataKeys,
- OrdinaryDeleteMetadata: deleteMetadata,
- };
- return provider;
- }
- /**
- * Gets the metadata provider for an object. If the object has no metadata provider and this is for a create operation,
- * then this module's metadata provider is assigned to the object.
- */
- function GetMetadataProvider(O, P, Create) {
- var registeredProvider = metadataRegistry.getProvider(O, P);
- if (!IsUndefined(registeredProvider)) {
- return registeredProvider;
- }
- if (Create) {
- if (metadataRegistry.setProvider(O, P, metadataProvider)) {
- return metadataProvider;
- }
- throw new Error("Illegal state.");
- }
- return undefined;
- }
- // naive Map shim
- function CreateMapPolyfill() {
- var cacheSentinel = {};
- var arraySentinel = [];
- var MapIterator = /** @class */ (function () {
- function MapIterator(keys, values, selector) {
- this._index = 0;
- this._keys = keys;
- this._values = values;
- this._selector = selector;
- }
- MapIterator.prototype["@@iterator"] = function () { return this; };
- MapIterator.prototype[iteratorSymbol] = function () { return this; };
- MapIterator.prototype.next = function () {
- var index = this._index;
- if (index >= 0 && index < this._keys.length) {
- var result = this._selector(this._keys[index], this._values[index]);
- if (index + 1 >= this._keys.length) {
- this._index = -1;
- this._keys = arraySentinel;
- this._values = arraySentinel;
- }
- else {
- this._index++;
- }
- return { value: result, done: false };
- }
- return { value: undefined, done: true };
- };
- MapIterator.prototype.throw = function (error) {
- if (this._index >= 0) {
- this._index = -1;
- this._keys = arraySentinel;
- this._values = arraySentinel;
- }
- throw error;
- };
- MapIterator.prototype.return = function (value) {
- if (this._index >= 0) {
- this._index = -1;
- this._keys = arraySentinel;
- this._values = arraySentinel;
- }
- return { value: value, done: true };
- };
- return MapIterator;
- }());
- var Map = /** @class */ (function () {
- function Map() {
- this._keys = [];
- this._values = [];
- this._cacheKey = cacheSentinel;
- this._cacheIndex = -2;
- }
- Object.defineProperty(Map.prototype, "size", {
- get: function () { return this._keys.length; },
- enumerable: true,
- configurable: true
- });
- Map.prototype.has = function (key) { return this._find(key, /*insert*/ false) >= 0; };
- Map.prototype.get = function (key) {
- var index = this._find(key, /*insert*/ false);
- return index >= 0 ? this._values[index] : undefined;
- };
- Map.prototype.set = function (key, value) {
- var index = this._find(key, /*insert*/ true);
- this._values[index] = value;
- return this;
- };
- Map.prototype.delete = function (key) {
- var index = this._find(key, /*insert*/ false);
- if (index >= 0) {
- var size = this._keys.length;
- for (var i = index + 1; i < size; i++) {
- this._keys[i - 1] = this._keys[i];
- this._values[i - 1] = this._values[i];
- }
- this._keys.length--;
- this._values.length--;
- if (SameValueZero(key, this._cacheKey)) {
- this._cacheKey = cacheSentinel;
- this._cacheIndex = -2;
- }
- return true;
- }
- return false;
- };
- Map.prototype.clear = function () {
- this._keys.length = 0;
- this._values.length = 0;
- this._cacheKey = cacheSentinel;
- this._cacheIndex = -2;
- };
- Map.prototype.keys = function () { return new MapIterator(this._keys, this._values, getKey); };
- Map.prototype.values = function () { return new MapIterator(this._keys, this._values, getValue); };
- Map.prototype.entries = function () { return new MapIterator(this._keys, this._values, getEntry); };
- Map.prototype["@@iterator"] = function () { return this.entries(); };
- Map.prototype[iteratorSymbol] = function () { return this.entries(); };
- Map.prototype._find = function (key, insert) {
- if (!SameValueZero(this._cacheKey, key)) {
- this._cacheIndex = -1;
- for (var i = 0; i < this._keys.length; i++) {
- if (SameValueZero(this._keys[i], key)) {
- this._cacheIndex = i;
- break;
- }
- }
- }
- if (this._cacheIndex < 0 && insert) {
- this._cacheIndex = this._keys.length;
- this._keys.push(key);
- this._values.push(undefined);
- }
- return this._cacheIndex;
- };
- return Map;
- }());
- return Map;
- function getKey(key, _) {
- return key;
- }
- function getValue(_, value) {
- return value;
- }
- function getEntry(key, value) {
- return [key, value];
- }
- }
- // naive Set shim
- function CreateSetPolyfill() {
- var Set = /** @class */ (function () {
- function Set() {
- this._map = new _Map();
- }
- Object.defineProperty(Set.prototype, "size", {
- get: function () { return this._map.size; },
- enumerable: true,
- configurable: true
- });
- Set.prototype.has = function (value) { return this._map.has(value); };
- Set.prototype.add = function (value) { return this._map.set(value, value), this; };
- Set.prototype.delete = function (value) { return this._map.delete(value); };
- Set.prototype.clear = function () { this._map.clear(); };
- Set.prototype.keys = function () { return this._map.keys(); };
- Set.prototype.values = function () { return this._map.keys(); };
- Set.prototype.entries = function () { return this._map.entries(); };
- Set.prototype["@@iterator"] = function () { return this.keys(); };
- Set.prototype[iteratorSymbol] = function () { return this.keys(); };
- return Set;
- }());
- return Set;
- }
- // naive WeakMap shim
- function CreateWeakMapPolyfill() {
- var UUID_SIZE = 16;
- var keys = HashMap.create();
- var rootKey = CreateUniqueKey();
- return /** @class */ (function () {
- function WeakMap() {
- this._key = CreateUniqueKey();
- }
- WeakMap.prototype.has = function (target) {
- var table = GetOrCreateWeakMapTable(target, /*create*/ false);
- return table !== undefined ? HashMap.has(table, this._key) : false;
- };
- WeakMap.prototype.get = function (target) {
- var table = GetOrCreateWeakMapTable(target, /*create*/ false);
- return table !== undefined ? HashMap.get(table, this._key) : undefined;
- };
- WeakMap.prototype.set = function (target, value) {
- var table = GetOrCreateWeakMapTable(target, /*create*/ true);
- table[this._key] = value;
- return this;
- };
- WeakMap.prototype.delete = function (target) {
- var table = GetOrCreateWeakMapTable(target, /*create*/ false);
- return table !== undefined ? delete table[this._key] : false;
- };
- WeakMap.prototype.clear = function () {
- // NOTE: not a real clear, just makes the previous data unreachable
- this._key = CreateUniqueKey();
- };
- return WeakMap;
- }());
- function CreateUniqueKey() {
- var key;
- do
- key = "@@WeakMap@@" + CreateUUID();
- while (HashMap.has(keys, key));
- keys[key] = true;
- return key;
- }
- function GetOrCreateWeakMapTable(target, create) {
- if (!hasOwn.call(target, rootKey)) {
- if (!create)
- return undefined;
- Object.defineProperty(target, rootKey, { value: HashMap.create() });
- }
- return target[rootKey];
- }
- function FillRandomBytes(buffer, size) {
- for (var i = 0; i < size; ++i)
- buffer[i] = Math.random() * 0xff | 0;
- return buffer;
- }
- function GenRandomBytes(size) {
- if (typeof Uint8Array === "function") {
- var array = new Uint8Array(size);
- if (typeof crypto !== "undefined") {
- crypto.getRandomValues(array);
- }
- else if (typeof msCrypto !== "undefined") {
- msCrypto.getRandomValues(array);
- }
- else {
- FillRandomBytes(array, size);
- }
- return array;
- }
- return FillRandomBytes(new Array(size), size);
- }
- function CreateUUID() {
- var data = GenRandomBytes(UUID_SIZE);
- // mark as random - RFC 4122 § 4.4
- data[6] = data[6] & 0x4f | 0x40;
- data[8] = data[8] & 0xbf | 0x80;
- var result = "";
- for (var offset = 0; offset < UUID_SIZE; ++offset) {
- var byte = data[offset];
- if (offset === 4 || offset === 6 || offset === 8)
- result += "-";
- if (byte < 16)
- result += "0";
- result += byte.toString(16).toLowerCase();
- }
- return result;
- }
- }
- // uses a heuristic used by v8 and chakra to force an object into dictionary mode.
- function MakeDictionary(obj) {
- obj.__ = undefined;
- delete obj.__;
- return obj;
- }
- });
- })(Reflect || (Reflect = {}));
|