@cyberjs.on/mirror 7.0.0-3 → 7.1.1-0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. package/package.json +1 -5
  2. package/src/lib/reflection.d.mts +4 -4
  3. package/src/lib/reflection.mjs +67 -34
  4. package/src/lib/reflection.mjs.map +1 -1
  5. package/src/lib/selfFactory.d.mts +2 -2
  6. package/src/lib/selfFactory.mjs.map +1 -1
  7. package/src/lib/types/{genericSelfFactoryStaticType.d.mts → genericSelfFactoryStaticSide.d.mts} +1 -1
  8. package/src/lib/types/genericSelfFactoryStaticSide.mjs +3 -0
  9. package/src/lib/types/genericSelfFactoryStaticSide.mjs.map +1 -0
  10. package/src/lib/types/index.d.mts +1 -3
  11. package/src/lib/types/index.mjs +1 -3
  12. package/src/lib/types/index.mjs.map +1 -1
  13. package/src/lib/types/instanceSideType.d.mts +2 -0
  14. package/src/lib/types/instanceSideType.mjs +2 -0
  15. package/src/lib/types/instanceSideType.mjs.map +1 -0
  16. package/src/lib/types/methodsNameList.mjs.map +1 -1
  17. package/src/lib/types/selfFactoryStaticSide.d.mts +8 -0
  18. package/src/lib/types/selfFactoryStaticSide.mjs +2 -0
  19. package/src/lib/types/selfFactoryStaticSide.mjs.map +1 -0
  20. package/src/tests/index.mjs +43 -21
  21. package/src/tests/index.mjs.map +1 -1
  22. package/tsconfig.tsbuildinfo +1 -1
  23. package/src/lib/types/genericSelfFactoryStaticType.mjs +0 -3
  24. package/src/lib/types/genericSelfFactoryStaticType.mjs.map +0 -1
  25. package/src/lib/types/selfFactoryConstructorType.d.mts +0 -2
  26. package/src/lib/types/selfFactoryConstructorType.mjs +0 -2
  27. package/src/lib/types/selfFactoryConstructorType.mjs.map +0 -1
  28. package/src/lib/types/selfFactoryStaticType.d.mts +0 -8
  29. package/src/lib/types/selfFactoryStaticType.mjs +0 -2
  30. package/src/lib/types/selfFactoryStaticType.mjs.map +0 -1
package/package.json CHANGED
@@ -1,15 +1,12 @@
1
1
  {
2
2
  "name": "@cyberjs.on/mirror",
3
- "version": "7.0.0-3",
3
+ "version": "7.1.1-0",
4
4
  "description": "A helpful library to work with Reflection.",
5
5
  "repository": {
6
6
  "url": "https://gitlab.com/cyberjson/nodejs/es/mirror/-/blob/dev"
7
7
  },
8
8
  "readme": "https://gitlab.com/cyberjson/nodejs/es/mirror/-/blob/dev/README.md",
9
9
  "license": "MPL-2.0",
10
- "dependencies": {
11
- "@cyberjs.on/mathrix": "6.2.0-4"
12
- },
13
10
  "devDependencies": {
14
11
  "@cyberjs.on/types": "12.1.0-3",
15
12
  "@types/node": "~20.0.0",
@@ -22,7 +19,6 @@
22
19
  }
23
20
  },
24
21
  "scripts": {
25
- "build": "tsc -b",
26
22
  "bundle:publish": "npm publish ./es --access public",
27
23
  "update-build": "git pull && npm run build",
28
24
  "test": "node es/src/tests/index.mjs"
@@ -1,13 +1,13 @@
1
- import '@cyberjs.on/mathrix/extensions/set';
2
- import { GenericSelfFactoryStaticType, SelfFactoryConstructorType } from './types/index.mjs';
1
+ import { GenericSelfFactoryStaticSide } from './types/index.mjs';
3
2
  import { FieldsNameList } from './types/fieldsNameList.mjs';
4
3
  import { MethodsNameList } from './types/methodsNameList.mjs';
5
- export declare class Reflection<T extends GenericSelfFactoryStaticType<SelfFactoryConstructorType>> {
4
+ import { InstanceSideType } from './types/instanceSideType.mjs';
5
+ export declare class Reflection<T extends GenericSelfFactoryStaticSide<InstanceSideType>> {
6
6
  #private;
7
- private constructorReference;
8
7
  constructor(constructorReference: T);
9
8
  get methodsName(): MethodsNameList<InstanceType<T>>;
10
9
  get fieldsName(): FieldsNameList<InstanceType<T>>;
11
10
  get staticMethodsName(): MethodsNameList<T>;
12
11
  get staticFieldsName(): FieldsNameList<T>;
12
+ static getConstructorsOfPrototypeChain(constructorReference: Function, catchNative?: boolean): Function[];
13
13
  }
@@ -1,57 +1,90 @@
1
- import '@cyberjs.on/mathrix/extensions/set';
1
+ var _a;
2
2
  export class Reflection {
3
- constructorReference;
4
- #_staticPropertiesName;
5
- #staticPropertiesNameSet;
6
3
  #_fieldsName;
7
4
  #_methodsName;
8
5
  #_staticFieldsName;
9
6
  #_staticMethodsName;
10
- #instanceReference;
11
7
  constructor(constructorReference) {
12
- this.constructorReference = constructorReference;
13
- this.#instanceReference = constructorReference.getOwnInstance();
14
- this.#_staticPropertiesName = this.#resolveStaticPropertiesName();
15
- this.#staticPropertiesNameSet = new Set(this.#_staticPropertiesName);
16
- this.#_staticFieldsName = this.#resolveStaticFieldsName();
17
- this.#_staticMethodsName = this.#resolveStaticMethodsName();
18
- this.#_fieldsName = this.#resolveFieldsName();
19
- this.#_methodsName = this.#resolveMethodsName();
8
+ const staticPropertiesList = this
9
+ .#getStaticPropertiesList(constructorReference);
10
+ this.#_fieldsName = this.#resolveFieldsName(constructorReference);
11
+ this.#_staticFieldsName = this
12
+ .#resolveStaticFieldsName(constructorReference, staticPropertiesList);
13
+ this.#_staticMethodsName = this
14
+ .#resolveStaticMethodsName(constructorReference, staticPropertiesList);
15
+ this.#_methodsName = this.#resolveMethodsName(constructorReference);
20
16
  }
21
17
  get methodsName() {
22
18
  return this.#_methodsName;
23
19
  }
24
- #resolveMethodsName() {
25
- return Reflect.ownKeys(Object.getPrototypeOf(this.#instanceReference))
26
- .filter((property) => property !== 'constructor');
27
- }
28
20
  get fieldsName() {
29
21
  return this.#_fieldsName;
30
22
  }
31
- #resolveFieldsName() {
32
- return Reflect.ownKeys(this.#instanceReference)
33
- .filter((property) => property !== 'constructor');
34
- }
35
23
  get staticMethodsName() {
36
24
  return this.#_staticMethodsName;
37
25
  }
38
- #resolveStaticMethodsName() {
39
- const nonFunctions = new Set(this.#_staticFieldsName
40
- .filter((property) => typeof this.constructorReference[property] !== 'function'));
41
- return Array.from(this.#staticPropertiesNameSet.difference(nonFunctions));
42
- }
43
26
  get staticFieldsName() {
44
27
  return this.#_staticFieldsName;
45
28
  }
46
- #resolveStaticFieldsName() {
47
- const functions = new Set(this.#_staticPropertiesName
48
- .filter((property) => typeof this.constructorReference[property] === 'function'));
49
- return Array.from(this.#staticPropertiesNameSet.difference(functions));
29
+ #resolveFieldsName(constructorReference) {
30
+ return Reflect.ownKeys(constructorReference.getOwnInstance());
31
+ }
32
+ #resolveStaticFieldsName(constructorReference, staticPropertiesList) {
33
+ return staticPropertiesList.filter(propertyReference => typeof constructorReference[propertyReference] !== 'function');
34
+ }
35
+ #resolveMethodsName(constructorReference) {
36
+ const _self = _a;
37
+ let constructorsOfPrototypeChain;
38
+ const methods = Reflect
39
+ .ownKeys(constructorReference.prototype)
40
+ .filter(propertyReference => propertyReference !== 'constructor');
41
+ constructorsOfPrototypeChain = _self
42
+ .getConstructorsOfPrototypeChain(constructorReference);
43
+ constructorsOfPrototypeChain.forEach(constructorOfParent => {
44
+ methods.push(...Reflect.ownKeys(constructorOfParent.prototype)
45
+ .filter(propertyReference => propertyReference !== 'constructor'));
46
+ });
47
+ return methods;
48
+ }
49
+ #resolveStaticMethodsName(constructorReference, staticPropertiesList) {
50
+ return staticPropertiesList.filter(propertyReference => typeof constructorReference[propertyReference] === 'function');
51
+ }
52
+ #getStaticPropertiesList(constructorReference) {
53
+ const _self = _a;
54
+ const propertyReferences = this
55
+ .#filterPropertynames(Reflect.ownKeys(constructorReference));
56
+ let constructorsOfPrototypeChain;
57
+ constructorsOfPrototypeChain = _self
58
+ .getConstructorsOfPrototypeChain(constructorReference);
59
+ constructorsOfPrototypeChain.forEach(constructorOfParent => {
60
+ propertyReferences.push(...this.#filterPropertynames(Reflect.ownKeys(constructorOfParent))
61
+ .filter(propertyReference => propertyReference !== 'prototype'));
62
+ });
63
+ return propertyReferences;
64
+ }
65
+ #filterPropertynames(propertyReferences) {
66
+ return propertyReferences
67
+ .filter(propertyReference => propertyReference !== 'length'
68
+ && propertyReference !== 'name');
50
69
  }
51
- #resolveStaticPropertiesName() {
52
- return Reflect.ownKeys(this.constructorReference)
53
- .filter((property) => property !== 'length'
54
- && property !== 'name');
70
+ static getConstructorsOfPrototypeChain(constructorReference, catchNative = false) {
71
+ const parents = [];
72
+ let parent = Object.getPrototypeOf(constructorReference);
73
+ while (parent) {
74
+ if (parent instanceof Function) {
75
+ parents.push(parent);
76
+ parent = Object.getPrototypeOf(parent);
77
+ }
78
+ else {
79
+ if (catchNative) {
80
+ parents.push(Object);
81
+ parents.push(Function);
82
+ }
83
+ parent = null;
84
+ }
85
+ }
86
+ return parents;
55
87
  }
56
88
  }
89
+ _a = Reflection;
57
90
  //# sourceMappingURL=reflection.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"reflection.mjs","sourceRoot":"","sources":["../../../ts/src/lib/reflection.mts"],"names":[],"mappings":"AAAA,OAAO,oCAAoC,CAAC;AAW5C,MAAM,OAAO,UAAU;IAsBP;IAfZ,sBAAsB,CAAW;IAEjC,wBAAwB,CAAc;IAEtC,YAAY,CAAkC;IAE9C,aAAa,CAAmC;IAEhD,kBAAkB,CAAW;IAE7B,mBAAmB,CAAqB;IAExC,kBAAkB,CAA6B;IAE/C,YACY,oBAAuB;QAAvB,yBAAoB,GAApB,oBAAoB,CAAG;QAE/B,IAAI,CAAC,kBAAkB,GAAG,oBAAoB,CAAC,cAAc,EAAE,CAAC;QAEhE,IAAI,CAAC,sBAAsB,GAAG,IAAI,CAAC,4BAA4B,EAAE,CAAC;QAElE,IAAI,CAAC,wBAAwB,GAAG,IAAI,GAAG,CAAC,IAAI,CAAC,sBAAsB,CAAC,CAAC;QAErE,IAAI,CAAC,kBAAkB,GAAG,IAAI,CAAC,wBAAwB,EAAE,CAAC;QAE1D,IAAI,CAAC,mBAAmB,GAAG,IAAI,CAAC,yBAAyB,EAAE,CAAC;QAE5D,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,kBAAkB,EAAE,CAAC;QAE9C,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC,mBAAmB,EAAE,CAAC;IACpD,CAAC;IAED,IAAI,WAAW;QAEX,OAAO,IAAI,CAAC,aAAa,CAAC;IAC9B,CAAC;IAED,mBAAmB;QAEf,OAAO,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,cAAc,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC;aACjE,MAAM,CACH,CAAC,QAAyB,EAAE,EAAE,CAAC,QAAQ,KAAK,aAAa,CACrD,CAAC;IACjB,CAAC;IAED,IAAI,UAAU;QACV,OAAO,IAAI,CAAC,YAAY,CAAC;IAC7B,CAAC;IAED,kBAAkB;QAEd,OAAO,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,kBAAkB,CAAC;aAC1C,MAAM,CACH,CAAC,QAAyB,EAAE,EAAE,CAAC,QAAQ,KAAK,aAAa,CACrD,CAAC;IACjB,CAAC;IAED,IAAI,iBAAiB;QACjB,OAAO,IAAI,CAAC,mBAAmB,CAAC;IACpC,CAAC;IAED,yBAAyB;QAErB,MAAM,YAAY,GAAG,IAAI,GAAG,CAAC,IAAI,CAAC,kBAAkB;aAC/C,MAAM,CACH,CAAC,QAAyB,EAAE,EAAE,CAC1B,OAAQ,IAAI,CAAC,oBAA4B,CAAC,QAAQ,CAAC,KAAK,UAAU,CACzE,CAAC,CAAC;QAEP,OAAO,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,wBAAwB,CAAC,UAAU,CAAC,YAAY,CAAC,CAAQ,CAAC;IACrF,CAAC;IAED,IAAI,gBAAgB;QAChB,OAAO,IAAI,CAAC,kBAAyB,CAAC;IAC1C,CAAC;IAED,wBAAwB;QAEpB,MAAM,SAAS,GAAG,IAAI,GAAG,CAAC,IAAI,CAAC,sBAAsB;aAChD,MAAM,CACH,CAAC,QAAyB,EAAE,EAAE,CAC1B,OAAQ,IAAI,CAAC,oBAA4B,CAAC,QAAQ,CAAC,KAAK,UAAU,CACzE,CAAC,CAAC;QAEP,OAAO,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,wBAAwB,CAAC,UAAU,CAAC,SAAS,CAAC,CAAQ,CAAC;IAClF,CAAC;IAED,4BAA4B;QAExB,OAAO,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,oBAAoB,CAAC;aAC5C,MAAM,CAKH,CAAC,QAAyB,EAAE,EAAE,CAC1B,QAAQ,KAAK,QAAQ;eAClB,QAAQ,KAAK,MAAM,CACtB,CAAC;IACjB,CAAC;CAEJ","sourcesContent":["import '@cyberjs.on/mathrix/extensions/set';\n\nimport {\n GenericSelfFactoryStaticType,\n SelfFactoryConstructorType\n // , SelfFactoryStaticType\n} from './types/index.mjs';\nimport { FieldsNameList } from './types/fieldsNameList.mjs';\nimport { MethodsNameList } from './types/methodsNameList.mjs';\n\n\nexport class Reflection<\n // more comprehensive\n T extends GenericSelfFactoryStaticType<SelfFactoryConstructorType>\n // more restricted\n // T extends SelfFactoryStaticType\n> {\n\n #_staticPropertiesName: string[];\n\n #staticPropertiesNameSet: Set<string>;\n\n #_fieldsName: FieldsNameList<InstanceType<T>>;\n\n #_methodsName: MethodsNameList<InstanceType<T>>;\n\n #_staticFieldsName: string[];\n\n #_staticMethodsName: MethodsNameList<T>;\n\n #instanceReference: SelfFactoryConstructorType;\n\n constructor(\n private constructorReference: T\n ) {\n this.#instanceReference = constructorReference.getOwnInstance();\n\n this.#_staticPropertiesName = this.#resolveStaticPropertiesName();\n\n this.#staticPropertiesNameSet = new Set(this.#_staticPropertiesName);\n\n this.#_staticFieldsName = this.#resolveStaticFieldsName();\n\n this.#_staticMethodsName = this.#resolveStaticMethodsName();\n\n this.#_fieldsName = this.#resolveFieldsName();\n\n this.#_methodsName = this.#resolveMethodsName();\n }\n\n get methodsName(): MethodsNameList<InstanceType<T>> {\n\n return this.#_methodsName;\n }\n\n #resolveMethodsName(): MethodsNameList<InstanceType<T>> {\n\n return Reflect.ownKeys(Object.getPrototypeOf(this.#instanceReference))\n .filter(\n (property: string | symbol) => property !== 'constructor'\n ) as any;\n }\n\n get fieldsName(): FieldsNameList<InstanceType<T>> {\n return this.#_fieldsName;\n }\n\n #resolveFieldsName(): FieldsNameList<InstanceType<T>> {\n\n return Reflect.ownKeys(this.#instanceReference)\n .filter(\n (property: string | symbol) => property !== 'constructor'\n ) as any;\n }\n\n get staticMethodsName(): MethodsNameList<T> {\n return this.#_staticMethodsName;\n }\n\n #resolveStaticMethodsName(): MethodsNameList<T> {\n\n const nonFunctions = new Set(this.#_staticFieldsName\n .filter(\n (property: string | symbol) =>\n typeof (this.constructorReference as any)[property] !== 'function'\n ));\n\n return Array.from(this.#staticPropertiesNameSet.difference(nonFunctions)) as any;\n }\n\n get staticFieldsName(): FieldsNameList<T> {\n return this.#_staticFieldsName as any;\n }\n\n #resolveStaticFieldsName(): string[] {\n\n const functions = new Set(this.#_staticPropertiesName\n .filter(\n (property: string | symbol) =>\n typeof (this.constructorReference as any)[property] === 'function'\n ));\n\n return Array.from(this.#staticPropertiesNameSet.difference(functions)) as any;\n }\n\n #resolveStaticPropertiesName(): string[] {\n\n return Reflect.ownKeys(this.constructorReference)\n .filter(\n /**\n *\n * @todo verificar se este método realmente retorna isso\n */\n (property: string | symbol) =>\n property !== 'length'\n && property !== 'name'\n ) as any;\n }\n\n}\n"]}
1
+ {"version":3,"file":"reflection.mjs","sourceRoot":"","sources":["../../../ts/src/lib/reflection.mts"],"names":[],"mappings":";AAMA,MAAM,OAAO,UAAU;IAInB,YAAY,CAAmC;IAE/C,aAAa,CAAoC;IAEjD,kBAAkB,CAAsB;IAExC,mBAAmB,CAAsB;IAEzC,YACI,oBAAuB;QAGvB,MAAM,oBAAoB,GAAG,IAAI;aAC5B,wBAAwB,CAAC,oBAAoB,CAAC,CAAC;QAEpD,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,kBAAkB,CAAC,oBAAoB,CAAC,CAAC;QAElE,IAAI,CAAC,kBAAkB,GAAG,IAAI;aACzB,wBAAwB,CAAC,oBAAoB,EAAE,oBAAoB,CAAC,CAAC;QAE1E,IAAI,CAAC,mBAAmB,GAAG,IAAI;aAC1B,yBAAyB,CAAC,oBAAoB,EAAE,oBAAoB,CAAC,CAAC;QAE3E,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC,mBAAmB,CAAC,oBAAoB,CAAC,CAAC;IACxE,CAAC;IAED,IAAI,WAAW;QACX,OAAO,IAAI,CAAC,aAAa,CAAC;IAC9B,CAAC;IAED,IAAI,UAAU;QACV,OAAO,IAAI,CAAC,YAAY,CAAC;IAC7B,CAAC;IAED,IAAI,iBAAiB;QACjB,OAAO,IAAI,CAAC,mBAAmB,CAAC;IACpC,CAAC;IAED,IAAI,gBAAgB;QAChB,OAAO,IAAI,CAAC,kBAAyB,CAAC;IAC1C,CAAC;IAED,kBAAkB,CAAC,oBAAuB;QACtC,OAAO,OAAO,CAAC,OAAO,CAAC,oBAAoB,CAAC,cAAc,EAAE,CAAQ,CAAC;IACzE,CAAC;IAED,wBAAwB,CACpB,oBAA8B,EAC9B,oBAAyC;QAGzC,OAAO,oBAAoB,CAAC,MAAM,CAC9B,iBAAiB,CAAC,EAAE,CAChB,OAAQ,oBAA4B,CAAC,iBAAiB,CAAC,KAAK,UAAU,CACtE,CAAC;IACb,CAAC;IAED,mBAAmB,CAAC,oBAA8B;QAE9C,MAAM,KAAK,GAAG,EAAU,CAAC;QAEzB,IAAI,4BAAwC,CAAC;QAE7C,MAAM,OAAO,GAAG,OAAO;aAClB,OAAO,CAAC,oBAAoB,CAAC,SAAS,CAAC;aACvC,MAAM,CACH,iBAAiB,CAAC,EAAE,CAAC,iBAAiB,KAAK,aAAa,CACpD,CAAC;QAEb,4BAA4B,GAAG,KAAK;aAC/B,+BAA+B,CAAC,oBAAoB,CAAC,CAAC;QAE3D,4BAA4B,CAAC,OAAO,CAChC,mBAAmB,CAAC,EAAE;YAClB,OAAO,CAAC,IAAI,CAAC,GAAG,OAAO,CAAC,OAAO,CAAC,mBAAmB,CAAC,SAAS,CAAC;iBACzD,MAAM,CACH,iBAAiB,CAAC,EAAE,CAAC,iBAAiB,KAAK,aAAa,CAC3D,CACJ,CAAA;QACL,CAAC,CACJ,CAAC;QAEF,OAAO,OAAO,CAAC;IACnB,CAAC;IAED,yBAAyB,CACrB,oBAA8B,EAC9B,oBAAyC;QAGzC,OAAO,oBAAoB,CAAC,MAAM,CAC9B,iBAAiB,CAAC,EAAE,CAChB,OAAQ,oBAA4B,CAAC,iBAAiB,CAAC,KAAK,UAAU,CACtE,CAAC;IACb,CAAC;IAED,wBAAwB,CAAC,oBAA8B;QAEnD,MAAM,KAAK,GAAG,EAAU,CAAC;QAOzB,MAAM,kBAAkB,GAAG,IAAI;aAC1B,oBAAoB,CAAC,OAAO,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAC,CAAC;QAEjE,IAAI,4BAAwC,CAAC;QAE7C,4BAA4B,GAAG,KAAK;aAC/B,+BAA+B,CAAC,oBAAoB,CAAC,CAAC;QAE3D,4BAA4B,CAAC,OAAO,CAChC,mBAAmB,CAAC,EAAE;YAClB,kBAAkB,CAAC,IAAI,CAAC,GACpB,IAAI,CAAC,oBAAoB,CAAC,OAAO,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC;iBAC9D,MAAM,CACH,iBAAiB,CAAC,EAAE,CAAC,iBAAiB,KAAK,WAAW,CACzD,CACJ,CAAA;QACL,CAAC,CACJ,CAAC;QAEF,OAAO,kBAAkB,CAAC;IAC9B,CAAC;IAED,oBAAoB,CAAC,kBAAuC;QACxD,OAAO,kBAAkB;aACpB,MAAM,CACH,iBAAiB,CAAC,EAAE,CAChB,iBAAiB,KAAK,QAAQ;eAC3B,iBAAiB,KAAK,MAAM,CACtC,CAAC;IACV,CAAC;IAED,MAAM,CAAC,+BAA+B,CAClC,oBAA8B,EAC9B,WAAW,GAAG,KAAK;QAGnB,MAAM,OAAO,GAAe,EAAE,CAAC;QAE/B,IAAI,MAAM,GAAG,MAAM,CAAC,cAAc,CAAC,oBAAoB,CAAC,CAAC;QAEzD,OAAO,MAAM,EAAE,CAAC;YACZ,IAAI,MAAM,YAAY,QAAQ,EAAE,CAAC;gBAC7B,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;gBACrB,MAAM,GAAG,MAAM,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC;YAC3C,CAAC;iBAAM,CAAC;gBACJ,IAAI,WAAW,EAAE,CAAC;oBACd,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;oBACrB,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;gBAC3B,CAAC;gBAED,MAAM,GAAG,IAAI,CAAC;YAClB,CAAC;QACL,CAAC;QAED,OAAO,OAAO,CAAC;IACnB,CAAC;CAEJ","sourcesContent":["import { GenericSelfFactoryStaticSide } from './types/index.mjs';\nimport { FieldsNameList } from './types/fieldsNameList.mjs';\nimport { MethodsNameList } from './types/methodsNameList.mjs';\nimport { InstanceSideType } from './types/instanceSideType.mjs';\n\n\nexport class Reflection<\n T extends GenericSelfFactoryStaticSide<InstanceSideType>\n> {\n\n #_fieldsName!: FieldsNameList<InstanceType<T>>;\n\n #_methodsName!: MethodsNameList<InstanceType<T>>;\n\n #_staticFieldsName: (string | symbol)[];\n\n #_staticMethodsName!: MethodsNameList<T>;\n\n constructor(\n constructorReference: T\n ) {\n\n const staticPropertiesList = this\n .#getStaticPropertiesList(constructorReference);\n\n this.#_fieldsName = this.#resolveFieldsName(constructorReference);\n\n this.#_staticFieldsName = this\n .#resolveStaticFieldsName(constructorReference, staticPropertiesList);\n\n this.#_staticMethodsName = this\n .#resolveStaticMethodsName(constructorReference, staticPropertiesList);\n\n this.#_methodsName = this.#resolveMethodsName(constructorReference);\n }\n\n get methodsName(): MethodsNameList<InstanceType<T>> {\n return this.#_methodsName;\n }\n\n get fieldsName(): FieldsNameList<InstanceType<T>> {\n return this.#_fieldsName;\n }\n\n get staticMethodsName(): MethodsNameList<T> {\n return this.#_staticMethodsName;\n }\n\n get staticFieldsName(): FieldsNameList<T> {\n return this.#_staticFieldsName as any;\n }\n\n #resolveFieldsName(constructorReference: T): FieldsNameList<InstanceType<T>> {\n return Reflect.ownKeys(constructorReference.getOwnInstance()) as any;\n }\n\n #resolveStaticFieldsName(\n constructorReference: Function,\n staticPropertiesList: (string | symbol)[]\n ): (string | symbol)[] {\n\n return staticPropertiesList.filter(\n propertyReference =>\n typeof (constructorReference as any)[propertyReference] !== 'function'\n ) as any;\n }\n\n #resolveMethodsName(constructorReference: Function): MethodsNameList<InstanceType<T>> {\n\n const _self = Reflection;\n\n let constructorsOfPrototypeChain: Function[];\n\n const methods = Reflect\n .ownKeys(constructorReference.prototype)\n .filter(\n propertyReference => propertyReference !== 'constructor'\n ) as any;\n\n constructorsOfPrototypeChain = _self\n .getConstructorsOfPrototypeChain(constructorReference);\n\n constructorsOfPrototypeChain.forEach(\n constructorOfParent => {\n methods.push(...Reflect.ownKeys(constructorOfParent.prototype)\n .filter(\n propertyReference => propertyReference !== 'constructor'\n )\n )\n }\n );\n\n return methods;\n }\n\n #resolveStaticMethodsName(\n constructorReference: Function,\n staticPropertiesList: (string | symbol)[]\n ): MethodsNameList<T> {\n\n return staticPropertiesList.filter(\n propertyReference =>\n typeof (constructorReference as any)[propertyReference] === 'function'\n ) as any;\n }\n\n #getStaticPropertiesList(constructorReference: Function): (string | symbol)[] {\n\n const _self = Reflection;\n\n /**\n *\n * the ownKeys method catch a non-enumerable propertyReferences, and static and symbols\n * members\n */\n const propertyReferences = this\n .#filterPropertynames(Reflect.ownKeys(constructorReference));\n\n let constructorsOfPrototypeChain: Function[];\n\n constructorsOfPrototypeChain = _self\n .getConstructorsOfPrototypeChain(constructorReference);\n\n constructorsOfPrototypeChain.forEach(\n constructorOfParent => {\n propertyReferences.push(...\n this.#filterPropertynames(Reflect.ownKeys(constructorOfParent))\n .filter(\n propertyReference => propertyReference !== 'prototype'\n )\n )\n }\n );\n\n return propertyReferences;\n }\n\n #filterPropertynames(propertyReferences: (string | symbol)[]) {\n return propertyReferences\n .filter(\n propertyReference =>\n propertyReference !== 'length'\n && propertyReference !== 'name'\n );\n }\n\n static getConstructorsOfPrototypeChain(\n constructorReference: Function,\n catchNative = false\n ): Function[] {\n\n const parents: Function[] = [];\n\n let parent = Object.getPrototypeOf(constructorReference);\n\n while (parent) {\n if (parent instanceof Function) {\n parents.push(parent);\n parent = Object.getPrototypeOf(parent);\n } else {\n if (catchNative) {\n parents.push(Object);\n parents.push(Function);\n }\n\n parent = null;\n }\n }\n\n return parents;\n }\n\n}\n"]}
@@ -1,2 +1,2 @@
1
- import { SelfFactoryStaticType } from "./types/index.mjs";
2
- export declare const SelfFactory: SelfFactoryStaticType;
1
+ import { SelfFactoryStaticSide } from "./types/selfFactoryStaticSide.mjs";
2
+ export declare const SelfFactory: SelfFactoryStaticSide;
@@ -1 +1 @@
1
- {"version":3,"file":"selfFactory.mjs","sourceRoot":"","sources":["../../../ts/src/lib/selfFactory.mts"],"names":[],"mappings":"AAMA,MAAM,CAAC,MAAM,WAAW,GAA0B;IAM9C,YAAY,GAAG,IAAS;IAExB,CAAC;IAED,MAAM,CAAC,cAAc,CAUjB,GAAG,IAAS;QAIZ,OAAO,IAAI,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC;IAC7B,CAAC;CAEJ,CAAA","sourcesContent":["import {\n SelfFactoryStaticType\n // , SelfFactoryAbstractConstructor\n} from \"./types/index.mjs\";\n\n\nexport const SelfFactory: SelfFactoryStaticType = class\n // só serve para autocompletamento se houver membros de instância a serem implementados\n // implements\n // SelfFactoryAbstractConstructor\n{\n\n constructor(...args: any) {\n\n }\n\n static getOwnInstance<\n // U extends typeof this\n\n T extends SelfFactoryStaticType,\n U extends InstanceType<T>\n >(\n this: {\n // new(...args: any): InstanceType<U>\n new(...args: any): U\n },\n ...args: any\n // ): InstanceType<U>\n ): U\n {\n return new this(...args);\n }\n\n}\n"]}
1
+ {"version":3,"file":"selfFactory.mjs","sourceRoot":"","sources":["../../../ts/src/lib/selfFactory.mts"],"names":[],"mappings":"AAGA,MAAM,CAAC,MAAM,WAAW,GAA0B;IAE9C,YAAY,GAAG,IAAS;IAExB,CAAC;IAED,MAAM,CAAC,cAAc,CAYjB,GAAG,IAAS;QAGZ,OAAO,IAAI,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC;IAC7B,CAAC;CAEJ,CAAA","sourcesContent":["import { SelfFactoryStaticSide } from \"./types/selfFactoryStaticSide.mjs\";\n\n\nexport const SelfFactory: SelfFactoryStaticSide = class {\n\n constructor(...args: any) {\n\n }\n\n static getOwnInstance<\n /**\n *\n * usa-se a chamada ao typeof quando queremos referenciar o tipo (abstração) de uma\n * classe concreta.\n */\n T extends typeof SelfFactory,\n U extends InstanceType<T>\n >(\n this: {\n new(...args: any): U\n },\n ...args: any\n ): U\n {\n return new this(...args);\n }\n\n}\n"]}
@@ -1,4 +1,4 @@
1
- export interface GenericSelfFactoryStaticType<C> {
1
+ export interface GenericSelfFactoryStaticSide<C> {
2
2
  new (...args: any): C;
3
3
  getOwnInstance(this: {
4
4
  new (...args: any): C;
@@ -0,0 +1,3 @@
1
+ ;
2
+ export {};
3
+ //# sourceMappingURL=genericSelfFactoryStaticSide.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"genericSelfFactoryStaticSide.mjs","sourceRoot":"","sources":["../../../../ts/src/lib/types/genericSelfFactoryStaticSide.mts"],"names":[],"mappings":"AAWC,CAAC","sourcesContent":["export interface GenericSelfFactoryStaticSide<C> {\n\n // here is the secret to reference the static side\n new(...args: any): C;\n\n getOwnInstance(\n this: {\n new(...args: any): C;\n }, ...args: any\n ): C;\n\n};\n"]}
@@ -1,3 +1 @@
1
- export * from './genericSelfFactoryStaticType.mjs';
2
- export * from './selfFactoryConstructorType.mjs';
3
- export * from './selfFactoryStaticType.mjs';
1
+ export * from './genericSelfFactoryStaticSide.mjs';
@@ -1,4 +1,2 @@
1
- export * from './genericSelfFactoryStaticType.mjs';
2
- export * from './selfFactoryConstructorType.mjs';
3
- export * from './selfFactoryStaticType.mjs';
1
+ export * from './genericSelfFactoryStaticSide.mjs';
4
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../../../ts/src/lib/types/index.mts"],"names":[],"mappings":"AAAA,cAAc,oCAAoC,CAAC;AACnD,cAAc,kCAAkC,CAAC;AACjD,cAAc,6BAA6B,CAAC","sourcesContent":["export * from './genericSelfFactoryStaticType.mjs';\nexport * from './selfFactoryConstructorType.mjs';\nexport * from './selfFactoryStaticType.mjs';\n"]}
1
+ {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../../../ts/src/lib/types/index.mts"],"names":[],"mappings":"AAAA,cAAc,oCAAoC,CAAC","sourcesContent":["export * from './genericSelfFactoryStaticSide.mjs';\n"]}
@@ -0,0 +1,2 @@
1
+ export interface InstanceSideType {
2
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=instanceSideType.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"instanceSideType.mjs","sourceRoot":"","sources":["../../../../ts/src/lib/types/instanceSideType.mts"],"names":[],"mappings":"","sourcesContent":["/**\n *\n * Decerto que para referenciar uma constante como um tipo dentro de uma estrutura\n * abstrata, como uma interface ou uma classe abstrata, deve-se usar a declaração \"typeof\".\n * Isso não é necessário quando se usa uma classe comum como tipo, porque, para toda classe\n * declarada, o TS declara uma interface implicitamente.\n * Isto pode ser comprovado ao se usar a declaração \"implements\" referenciando outra classe\n * comum, o que estará sendo referenciado é a interface desta classe.\n */\nexport interface InstanceSideType { }\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"methodsNameList.mjs","sourceRoot":"","sources":["../../../../ts/src/lib/types/methodsNameList.mts"],"names":[],"mappings":"","sourcesContent":["import {\n TupleShift,\n TuplePush\n} from '@cyberjs.on/types';\n\nimport { PropertiesNameList } from './propertiesNameList.mjs';\n\n\nexport type MethodsNameList<\n T extends (Function | Object),\n P extends any[] = PropertiesNameList<T>,\n R extends any[] = []\n> =\n P['length'] extends 0\n ? R\n : T[P[0]] extends Function\n ? MethodsNameList<T, TupleShift<P>, TuplePush<R, P[0]>>\n : MethodsNameList<T, TupleShift<P>, R>\n\n\n/*\nclass C1 {\n\n p1 = 1;\n\n p2 = 2;\n\n #pp1 = 1;\n\n #pp2 = 2;\n\n static sp1 = 1;\n\n static sp2 = 2;\n\n #static psp1 = 1;\n\n #static psp2 = 2;\n\n m1() {\n\n }\n\n m2() {\n\n }\n\n static sm1() {\n\n }\n\n static sm2() {\n\n }\n\n}\n\n\nlet methodsName: MethodsNameList<C1>\n\nlet staticMethodsName: MethodsNameList<typeof C1>\n/**/\n"]}
1
+ {"version":3,"file":"methodsNameList.mjs","sourceRoot":"","sources":["../../../../ts/src/lib/types/methodsNameList.mts"],"names":[],"mappings":"","sourcesContent":["import {\n TupleShift,\n TuplePush\n} from '@cyberjs.on/types';\n\nimport { PropertiesNameList } from './propertiesNameList.mjs';\n\n\nexport type MethodsNameList<\n T extends (Function | Object),\n P extends any[] = PropertiesNameList<T>,\n R extends any[] = []\n> =\n P['length'] extends 0\n ? R\n : T[P[0]] extends Function\n ? MethodsNameList<T, TupleShift<P>, TuplePush<R, P[0]>>\n : MethodsNameList<T, TupleShift<P>, R>\n\n\n/*\nclass C1 {\n\n p1 = 1;\n\n p2 = 2;\n\n #pp1 = 1;\n\n #pp2 = 2;\n\n static sp1 = 1;\n\n static sp2 = 2;\n\n static #psp1 = 1;\n\n static #psp2 = 2;\n\n m1() {\n\n }\n\n m2() {\n\n }\n\n static sm1() {\n\n }\n\n static sm2() {\n\n }\n\n}\n\n\nlet methodsName: MethodsNameList<C1>\n\nlet staticMethodsName: MethodsNameList<typeof C1>\n/**/\n"]}
@@ -0,0 +1,8 @@
1
+ import { GenericSelfFactoryStaticSide } from "./index.mjs";
2
+ import { InstanceSideType } from "./instanceSideType.mjs";
3
+ export interface SelfFactoryStaticSide extends GenericSelfFactoryStaticSide<InstanceSideType> {
4
+ new <T extends SelfFactoryStaticSide, U extends InstanceType<T>>(...args: any): U;
5
+ getOwnInstance<T extends SelfFactoryStaticSide, U extends InstanceType<T>>(this: {
6
+ new (...args: any): U;
7
+ }, ...args: any): U;
8
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=selfFactoryStaticSide.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"selfFactoryStaticSide.mjs","sourceRoot":"","sources":["../../../../ts/src/lib/types/selfFactoryStaticSide.mts"],"names":[],"mappings":"","sourcesContent":["import { GenericSelfFactoryStaticSide } from \"./index.mjs\";\nimport { InstanceSideType } from \"./instanceSideType.mjs\";\n\n\nexport interface SelfFactoryStaticSide\n extends GenericSelfFactoryStaticSide<InstanceSideType>\n{\n\n new <\n T extends SelfFactoryStaticSide,\n U extends InstanceType<T>\n >(...args: any): U;\n\n getOwnInstance<\n /**\n *\n * esta interface, como informa o próprio nome, referencia o lado estático\n * de quem a implementa, logo, neste caso, o this se refere ao lado estático, sendo\n * o próprio SelfFactoryStaticSide, que estende GenericSelfFactoryStaticSide.\n */\n T extends SelfFactoryStaticSide,\n U extends InstanceType<T>\n >(\n this: {\n new(...args: any): U\n },\n ...args: any\n ): U;\n\n}\n"]}
@@ -1,39 +1,61 @@
1
- import { Reflection } from '../index.mjs';
2
- const symb1 = Symbol();
3
- const symb2 = Symbol();
4
- const C1 = class {
1
+ import { SelfFactory, Reflection } from '../index.mjs';
2
+ const symbol1 = Symbol();
3
+ const symbol2 = Symbol();
4
+ const symbolAsMethod1 = Symbol();
5
+ const symbolAsMethod2 = Symbol();
6
+ const sSymbol1 = Symbol();
7
+ const sSymbol2 = Symbol();
8
+ const sSymbolAsMethod1 = Symbol();
9
+ const sSymbolAsMethod2 = Symbol();
10
+ const C1 = class extends SelfFactory {
5
11
  p1 = 1;
6
- static sp1 = 1;
12
+ p2 = 2;
7
13
  #pp1;
14
+ static sp1 = 1;
15
+ static sp2 = 2;
8
16
  static #psp1 = `this is a static property defined in ${this.name}`;
9
17
  constructor(...args) {
18
+ super();
10
19
  this.#pp1 = `this is a property defined in ${C1.name}`;
11
20
  }
12
- static sm1() {
13
- return this.#psm1();
14
- }
15
21
  m1() {
16
- return this.#pm1();
22
+ }
23
+ m2() {
17
24
  }
18
25
  #pm1() {
19
- return this.#pp1;
26
+ }
27
+ [symbol1] = 1;
28
+ [symbol2] = 2;
29
+ [symbolAsMethod1]() {
30
+ return 'The symbol as method 1';
31
+ }
32
+ [symbolAsMethod2]() {
33
+ return 'The symbol as method 2';
34
+ }
35
+ static sm1() {
36
+ }
37
+ static {
38
+ this.sm1 = () => {
39
+ };
40
+ }
41
+ static sm2() {
20
42
  }
21
43
  static #psm1() {
22
44
  return this.#psp1;
23
45
  }
24
- [symb2]() {
25
- return 'A symbol of object';
26
- }
27
- static [symb1]() {
28
- return 'A symbol of class (static)';
46
+ static [sSymbol1] = 1;
47
+ static [sSymbol2] = 2;
48
+ static [sSymbolAsMethod1]() {
49
+ return 'The static symbol as method 1';
29
50
  }
30
- static getOwnInstance(...args) {
31
- return new this;
51
+ static [sSymbolAsMethod2]() {
52
+ return 'The static symbol as method 2';
32
53
  }
33
54
  };
55
+ C1.getOwnInstance();
34
56
  const reflection = new Reflection(C1);
35
- console.log(`atributos de classe:`, reflection.staticFieldsName);
36
- console.log(`métodos de classe:`, reflection.staticMethodsName);
37
- console.log(`atributos de instância:`, reflection.fieldsName);
38
- console.log(`métodos de instância:`, reflection.methodsName);
57
+ console.log('atributos de instância:', reflection.fieldsName);
58
+ console.log('métodos de instância:', reflection.methodsName);
59
+ console.log('atributos de classe:', reflection.staticFieldsName);
60
+ console.log('métodos de classe:', reflection.staticMethodsName);
39
61
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../../ts/src/tests/index.mts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAI1C,MAAM,KAAK,GAAG,MAAM,EAAE,CAAC;AACvB,MAAM,KAAK,GAAG,MAAM,EAAE,CAAC;AAevB,MAAM,EAAE,GAAQ;IAEZ,EAAE,GAAG,CAAC,CAAC;IAEP,MAAM,CAAC,GAAG,GAAG,CAAC,CAAC;IAEf,IAAI,CAAS;IAEb,MAAM,CAAC,KAAK,GAAG,wCAAwC,IAAI,CAAC,IAAI,EAAE,CAAC;IAEnE,YAAY,GAAG,IAAS;QAGpB,IAAI,CAAC,IAAI,GAAG,iCAAiC,EAAE,CAAC,IAAI,EAAE,CAAC;IAC3D,CAAC;IAYD,MAAM,CAAC,GAAG;QACN,OAAO,IAAI,CAAC,KAAK,EAAE,CAAC;IACxB,CAAC;IAED,EAAE;QACE,OAAO,IAAI,CAAC,IAAI,EAAE,CAAC;IACvB,CAAC;IAED,IAAI;QACA,OAAO,IAAI,CAAC,IAAI,CAAC;IACrB,CAAC;IAED,MAAM,CAAC,KAAK;QACR,OAAO,IAAI,CAAC,KAAK,CAAC;IACtB,CAAC;IAED,CAAC,KAAK,CAAC;QACH,OAAO,oBAAoB,CAAC;IAChC,CAAC;IAED,MAAM,CAAC,CAAC,KAAK,CAAC;QACV,OAAO,4BAA4B,CAAC;IACxC,CAAC;IAED,MAAM,CAAC,cAAc,CAIjB,GAAG,IAAS;QAGZ,OAAO,IAAI,IAAI,CAAC;IACpB,CAAC;CAEJ,CAAA;AAID,MAAM,UAAU,GAAG,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC;AAOtC,OAAO,CAAC,GAAG,CAAC,sBAAsB,EAAE,UAAU,CAAC,gBAAgB,CAAC,CAAC;AACjE,OAAO,CAAC,GAAG,CAAC,oBAAoB,EAAE,UAAU,CAAC,iBAAiB,CAAC,CAAC;AAChE,OAAO,CAAC,GAAG,CAAC,yBAAyB,EAAE,UAAU,CAAC,UAAU,CAAC,CAAC;AAC9D,OAAO,CAAC,GAAG,CAAC,uBAAuB,EAAE,UAAU,CAAC,WAAW,CAAC,CAAC","sourcesContent":["import { Reflection } from '../index.mjs';\nimport { GenericSelfFactoryStaticType } from '../lib/types/genericSelfFactoryStaticType.mjs';\n\n\nconst symb1 = Symbol();\nconst symb2 = Symbol();\n\ninterface IC1 {\n\n p1: number\n\n}\n\ninterface SC1 extends GenericSelfFactoryStaticType<IC1> {\n\n sp1: number;\n\n}\n\n// class C1 extends SelfFactory {\nconst C1: SC1 = class implements IC1 {\n\n p1 = 1;\n\n static sp1 = 1;\n\n #pp1: string;\n\n static #psp1 = `this is a static property defined in ${this.name}`;\n\n constructor(...args: any) {\n // super();\n\n this.#pp1 = `this is a property defined in ${C1.name}`;\n }\n\n /**\n *\n * @todo rever como blocos estáticos funcionam (se funcionam) no TS\n */\n // static {\n // this.sm1 = () => {\n // return this.psm1();\n // }\n // }\n\n static sm1() {\n return this.#psm1();\n }\n\n m1() {\n return this.#pm1();\n }\n\n #pm1() {\n return this.#pp1;\n }\n\n static #psm1() {\n return this.#psp1;\n }\n\n [symb2](): string {\n return 'A symbol of object';\n }\n\n static [symb1](): string {\n return 'A symbol of class (static)';\n }\n\n static getOwnInstance(\n this: {\n new(...args: any): IC1\n },\n ...args: any\n ): IC1\n {\n return new this;\n }\n\n}\n\n\n// C1.getOwnInstance()\nconst reflection = new Reflection(C1);\n\n/**\n *\n * O TS apenas emula propriedades privadas, de forma que, para que de fato não apareçam aqui,\n * devem iniciar com a instrução #\n */\nconsole.log(`atributos de classe:`, reflection.staticFieldsName);\nconsole.log(`métodos de classe:`, reflection.staticMethodsName);\nconsole.log(`atributos de instância:`, reflection.fieldsName);\nconsole.log(`métodos de instância:`, reflection.methodsName);\n"]}
1
+ {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../../ts/src/tests/index.mts"],"names":[],"mappings":"AAAA,OAAO,EAEH,WAAW,EACX,UAAU,EACb,MAAM,cAAc,CAAC;AAGtB,MAAM,OAAO,GAAG,MAAM,EAAE,CAAC;AAIzB,MAAM,OAAO,GAAG,MAAM,EAAE,CAAC;AAEzB,MAAM,eAAe,GAAG,MAAM,EAAE,CAAC;AAEjC,MAAM,eAAe,GAAG,MAAM,EAAE,CAAC;AAEjC,MAAM,QAAQ,GAAG,MAAM,EAAE,CAAC;AAE1B,MAAM,QAAQ,GAAG,MAAM,EAAE,CAAC;AAE1B,MAAM,gBAAgB,GAAG,MAAM,EAAE,CAAC;AAElC,MAAM,gBAAgB,GAAG,MAAM,EAAE,CAAC;AAyDlC,MAAM,EAAE,GAA8B,KAAM,SAAQ,WAAW;IAE3D,EAAE,GAAG,CAAC,CAAC;IAEP,EAAE,GAAG,CAAC,CAAC;IAEP,IAAI,CAAS;IAEb,MAAM,CAAC,GAAG,GAAG,CAAC,CAAC;IAEf,MAAM,CAAC,GAAG,GAAG,CAAC,CAAC;IAEf,MAAM,CAAC,KAAK,GAAG,wCAAwC,IAAI,CAAC,IAAI,EAAE,CAAC;IAEnE,YAAY,GAAG,IAAS;QACpB,KAAK,EAAE,CAAC;QAER,IAAI,CAAC,IAAI,GAAG,iCAAiC,EAAE,CAAC,IAAI,EAAE,CAAC;IAC3D,CAAC;IAED,EAAE;IAEF,CAAC;IAED,EAAE;IAEF,CAAC;IAED,IAAI;IAEJ,CAAC;IAED,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;IAEd,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;IAEd,CAAC,eAAe,CAAC;QACb,OAAO,wBAAwB,CAAC;IACpC,CAAC;IAED,CAAC,eAAe,CAAC;QACb,OAAO,wBAAwB,CAAC;IACpC,CAAC;IAED,MAAM,CAAC,GAAG;IAEV,CAAC;IASD;QAEI,IAAI,CAAC,GAAG,GAAG,GAAG,EAAE;QAEhB,CAAC,CAAA;IAEL,CAAC;IAED,MAAM,CAAC,GAAG;IAEV,CAAC;IAED,MAAM,CAAC,KAAK;QACR,OAAO,IAAI,CAAC,KAAK,CAAC;IACtB,CAAC;IAED,MAAM,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC;IAEtB,MAAM,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC;IAEtB,MAAM,CAAC,CAAC,gBAAgB,CAAC;QACrB,OAAO,+BAA+B,CAAC;IAC3C,CAAC;IAED,MAAM,CAAC,CAAC,gBAAgB,CAAC;QACrB,OAAO,+BAA+B,CAAC;IAC3C,CAAC;CAEJ,CAAA;AAGD,EAAE,CAAC,cAAc,EAAE,CAAA;AAMnB,MAAM,UAAU,GAAG,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC;AAEtC,OAAO,CAAC,GAAG,CAAC,yBAAyB,EAAE,UAAU,CAAC,UAAU,CAAC,CAAC;AAE9D,OAAO,CAAC,GAAG,CAAC,uBAAuB,EAAE,UAAU,CAAC,WAAW,CAAC,CAAC;AAE7D,OAAO,CAAC,GAAG,CAAC,sBAAsB,EAAE,UAAU,CAAC,gBAAgB,CAAC,CAAC;AAEjE,OAAO,CAAC,GAAG,CAAC,oBAAoB,EAAE,UAAU,CAAC,iBAAiB,CAAC,CAAC","sourcesContent":["import {\n GenericSelfFactoryStaticSide,\n SelfFactory,\n Reflection\n} from '../index.mjs';\n\n\nconst symbol1 = Symbol();\n\n// console.log(typeof symbol1, '\\n'); //=> symbol\n\nconst symbol2 = Symbol();\n\nconst symbolAsMethod1 = Symbol();\n\nconst symbolAsMethod2 = Symbol();\n\nconst sSymbol1 = Symbol();\n\nconst sSymbol2 = Symbol();\n\nconst sSymbolAsMethod1 = Symbol();\n\nconst sSymbolAsMethod2 = Symbol();\n\ninterface InstanceSide1 {\n\n p1: number;\n\n m1(): void;\n\n [symbol1]: number;\n\n [symbolAsMethod1](): string;\n\n}\n\ninterface InstanceSide2 {\n\n p2: number;\n\n m2(): void;\n\n [symbol2]: number;\n\n [symbolAsMethod2](): string;\n\n}\n\n/**\n *\n * se acrescentar o InstanceSide1 no extends, as propriedades de instancia dele se tornam\n * propriedades de classe quando no extends houver SelfFactoryStaticSide\n */\n// interface StaticSide1 extends SelfFactoryStaticSide, InstanceSide1 {\n\ninterface StaticSide1 extends GenericSelfFactoryStaticSide<InstanceSide1 & InstanceSide2> {\n\n sp1: number;\n\n [sSymbol1]: number;\n\n sm1(): void;\n\n [sSymbolAsMethod1](): string;\n\n}\n\ninterface StaticSide2 extends GenericSelfFactoryStaticSide<InstanceSide1 & InstanceSide2> {\n\n sp2: number;\n\n [sSymbol2]: number;\n\n sm2(): void;\n\n [sSymbolAsMethod2](): string;\n\n}\n\nconst C1: StaticSide1 & StaticSide2 = class extends SelfFactory {\n\n p1 = 1;\n\n p2 = 2;\n\n #pp1: string;\n\n static sp1 = 1;\n\n static sp2 = 2;\n\n static #psp1 = `this is a static property defined in ${this.name}`;\n\n constructor(...args: any) {\n super();\n\n this.#pp1 = `this is a property defined in ${C1.name}`;\n }\n\n m1() {\n\n }\n\n m2() {\n\n }\n\n #pm1() {\n\n }\n\n [symbol1] = 1;\n\n [symbol2] = 2;\n\n [symbolAsMethod1](): string {\n return 'The symbol as method 1';\n }\n\n [symbolAsMethod2](): string {\n return 'The symbol as method 2';\n }\n\n static sm1() {\n\n }\n\n /**\n *\n * static initialization blocks em TS só serve para referenciar membros estáticos\n * previamente declarados, a fim de inicializá-los ao invés de fazê-lo diretamente na\n * declaração. Contudo, precisar ser declarado antes torna a solução redundante, já que,\n * neste caso, ela é redeclarada dentro do bloco.\n */\n static {\n\n this.sm1 = () => {\n\n }\n\n }\n\n static sm2() {\n\n }\n\n static #psm1() {\n return this.#psp1;\n }\n\n static [sSymbol1] = 1;\n\n static [sSymbol2] = 2;\n\n static [sSymbolAsMethod1](): string {\n return 'The static symbol as method 1';\n }\n\n static [sSymbolAsMethod2](): string {\n return 'The static symbol as method 2';\n }\n\n}\n\n\nC1.getOwnInstance() //=> InstanceSide1 & InstanceSide2\n\n/**\n *\n * em relação ao símbolo, o tipo mapeia para o tipo do símbolo (typeof)\n */\nconst reflection = new Reflection(C1);\n\nconsole.log('atributos de instância:', reflection.fieldsName);\n\nconsole.log('métodos de instância:', reflection.methodsName);\n\nconsole.log('atributos de classe:', reflection.staticFieldsName);\n\nconsole.log('métodos de classe:', reflection.staticMethodsName);\n"]}
@@ -1 +1 @@
1
- {"program":{"fileNames":["../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es5.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2015.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2016.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2017.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2018.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2019.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2020.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2021.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2022.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.dom.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.scripthost.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.decorators.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2022.full.d.ts","../ts/src/lib/types/genericselffactorystatictype.mts","../ts/src/lib/types/selffactoryconstructortype.mts","../ts/src/lib/types/selffactorystatictype.mts","../ts/src/lib/types/index.mts","../ts/src/lib/selffactory.mts","../node_modules/@cyberjs.on/mathrix/extensions/set/src/lib/typings.d.mts","../node_modules/@cyberjs.on/mathrix/extensions/set/src/lib/api.d.mts","../node_modules/@cyberjs.on/mathrix/extensions/set/src/lib/index.d.mts","../node_modules/@cyberjs.on/mathrix/extensions/set/src/index.d.mts","../node_modules/@cyberjs.on/mathrix/extensions/set/index.d.mts","../node_modules/@cyberjs.on/types/src/lib/abstractnewable.d.mts","../node_modules/@cyberjs.on/types/src/lib/tuples.d.mts","../node_modules/@cyberjs.on/types/src/lib/unionsets.d.mts","../node_modules/@cyberjs.on/types/src/lib/newable.d.mts","../node_modules/@cyberjs.on/types/src/lib/tupleofinstancesside.d.mts","../node_modules/@cyberjs.on/types/src/lib/intersectionsetasnewable.d.mts","../node_modules/@cyberjs.on/types/src/lib/state.d.mts","../node_modules/@cyberjs.on/types/src/lib/index.d.mts","../node_modules/@cyberjs.on/types/src/index.d.mts","../node_modules/@cyberjs.on/types/index.d.mts","../ts/src/lib/types/propertiesnamelist.mts","../ts/src/lib/types/fieldsnamelist.mts","../ts/src/lib/types/methodsnamelist.mts","../ts/src/lib/reflection.mts","../ts/src/lib/index.mts","../ts/src/index.mts","../ts/namespace.mts","../ts/index.mts","../ts/src/tests/index.mts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true,"impliedFormat":1},{"version":"76f838d5d49b65de83bc345c04aa54c62a3cfdb72a477dc0c0fce89a30596c30","affectsGlobalScope":true,"impliedFormat":1},{"version":"73e370058f82add1fdbc78ef3d1aab110108f2d5d9c857cb55d3361982347ace","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true,"impliedFormat":1},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true,"impliedFormat":1},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true,"impliedFormat":1},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true,"impliedFormat":1},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true,"impliedFormat":1},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"3cbad9a1ba4453443026ed38e4b8be018abb26565fa7c944376463ad9df07c41","impliedFormat":1},{"version":"da1c4b97f7fbf38e3448034063bdaa1f9499caeb3f1df90ab82f4803d0c86b12","signature":"0529b4e2beb08142b10af382c02f7a17d2a41559e4484c19a4dcb6c59b050594","impliedFormat":99},{"version":"964f02acf79e2aee3e319d835be55f30299826f5b8a05358c923937d5ba3ad2b","signature":"73c455c71a09b3dc566debb6b57c057cf0481b183a1f5fbbc6e5dc5a67fcba7c","impliedFormat":99},{"version":"0711b6bc618dd072f0ac3736bfecc135698519f971b37740b6a9090522875b73","signature":"0cac952082fab46abf3c1c0988857a06cf00bf5616f7afffd7bb313ee890ab18","impliedFormat":99},{"version":"17a0fb48f4807ac16e5baf8b42ad9b08640edb313bbfe3682242158e33b4b8b5","impliedFormat":99},{"version":"7b4913dbc54a0cab1cba6b23584288fe3d64b3c940eba6d82787c633c7050383","signature":"a0eb24449218b5b2933c209cee26e8feb071b3814c444eecf1762d58a89a1e28","impliedFormat":99},{"version":"6e8d943f81e2aaeab014629238e523d580140baf4baa3be793639c915393d4dc","affectsGlobalScope":true,"impliedFormat":99},{"version":"b6139f39ae7cb9def40bf2cedd4fe07cae6324a9245c40ba4a460fca10df2e1a","impliedFormat":99},{"version":"d7ea53d0fd5cbc03820cdabdf5f88de046e8f37bf00c56ae5483fa5b2ac0ad33","impliedFormat":99},{"version":"1e4c108870fb05f9d5edb9b35fe3b3aa1863590d1a4d6b6c856ff886fe79a6f6","impliedFormat":99},{"version":"991e1c92dec0804eddb5a72c5e1817ac40a49a80dd331aaa402b4062cd6f149e","impliedFormat":99},{"version":"20dbbba0c64020ec8f03a7df348a1521f17b36d72247659e095a76dc036849be","impliedFormat":99},{"version":"abfa5221ec421e3b05c91cc7a576b21eb71f0fb6995ff2acd9cec7339d7eecf3","impliedFormat":99},{"version":"147a463c0fc4eb432d5582cb2d0d6a6c1dc3e7d0def10f0459c5a12a94566ff3","impliedFormat":99},{"version":"ab12c49e92462c46a46a5324549257f1aca86ab17370deec805c79bb02a89e03","impliedFormat":99},{"version":"e321ad8f4b015b5d9a63b86e504532f6e564967fcc2197cdd9513f48a9ffd334","impliedFormat":99},{"version":"cb74902297fc2619f2f90bc4c3d207d07e1ec339906062d18100d8dbd25f136c","impliedFormat":99},{"version":"feed270bd9ae1cb0fa41bf202252b780df5c49dee13f740977b3f309f5caad11","impliedFormat":99},{"version":"9097d942ab7af0aef37b68857a16f3992f13da9ae1186a942adb0f39aabb4fcb","impliedFormat":99},{"version":"a56fea764bdc28ec26905310daa3afcbcf287814d424bba291f67ad21f68ae81","impliedFormat":99},{"version":"f9d3b407db8ec098b442ddd1ad8d65a3d6174ff63bb482752d382baf44b342fa","impliedFormat":99},{"version":"9a96efbaf40ba67562122bfc3476ed5cf1fff0a471ba38a8f5c8bd6319159abf","signature":"fa8d33caf1002c692c02680bd87b29513690512d624fe25d81533043f644dcb3","impliedFormat":99},{"version":"3f35c9f808d078d599764b53b589aab71ea105bd2b766021ae1ad2091bfee8e1","signature":"2b3e7576c5cab829a184235f83def9315a729cf9346afaa26bca0babaeeff894","impliedFormat":99},{"version":"bb148301975738324b7145efcd04a013e9088f9bbb8bb82f7c2030df18f6e222","signature":"d4d8fb24e4a79d39cd0043b862181911c1dc7e58994041485c34808ec78181ac","impliedFormat":99},{"version":"3e16f1143da55a13e9ba513b2b64a65298f3ab2576bf73e85bfe7771fead9c38","signature":"c83c0fad36a552856c801a1137c23ad334ac198c559369e97f788a84f7591961","impliedFormat":99},{"version":"3d1fc9909d5e629f3ef58cab022216631aabb2a42b5dc55f7f074f0b3c53d221","impliedFormat":99},{"version":"be68d9ca77d32c36102704e750c1e2a90a4a5215dea624b8885103d3e8bfdbab","impliedFormat":99},{"version":"9abecc68e861fea0eff9a0ea4427365882b88a9e929d097c5f3d2203e0b4aefa","impliedFormat":99},{"version":"34cd981f7053edf395bf565417609e14856b9078fa53342c9fcc2f044b7ee1e3","impliedFormat":99},{"version":"bf09b98eec6b5f0f28120089c98eded350243e6bafdd117a8dcd01efb782840b","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"b4473933ebd454f0b38bf002e92738f978f5197ad47627e6b2a6647046997256","impliedFormat":1},{"version":"a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a","impliedFormat":1},{"version":"f749812878fecfa53cfc13b36e5d35086fb6377983a9df44175da83ccc23af1f","affectsGlobalScope":true,"impliedFormat":1},{"version":"84168c1e1f6e21906eea5167154748c1e9fea5ef6f2e1b2b2d2cb19e89fbd81a","impliedFormat":1},{"version":"8155b7b79b6e7d7c13d3203f40cd8c201bdf2c0c25af536992d8962a28cac561","affectsGlobalScope":true,"impliedFormat":1},{"version":"5ca34a9a8b59bcc0e58730e702aa0823557122c86d6a6e1b6eeae85babb48513","impliedFormat":1},{"version":"c1d93a28c5312d757e449ad068c3a43ad0d961ab06e6a3b7aaa7d48c204a1deb","impliedFormat":1},{"version":"77b2a2f1719b4c19b79bf2bf4833f67770e30767e49102a6b75ab3b3cf8b5db7","affectsGlobalScope":true,"impliedFormat":1},{"version":"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","impliedFormat":1},{"version":"57e75559358fd6f9593b44506d75871004c124a70b6be3e0ce18597b71a08fc2","impliedFormat":1},{"version":"160f307d5ccc1f934de7fbed97f1d2016402f90f204c484e20bd5c2a19a4172a","impliedFormat":1},{"version":"9c1363edb96f09d8d2140284a39015dba08d5b01a98334ba9ad8784ab160c835","impliedFormat":1},{"version":"2a56407acc5881608ef5fa4c0688d446df6adfd010578ce83dd1b747d895b17f","impliedFormat":1},{"version":"ffa8324a4c0611f9a50262fb36f097eeabe0fa0d71755aa67156da13cde1b932","impliedFormat":1},{"version":"ad5c7ca4a4dc8e39e0aa221b981f6306ca1c037c99bd4902bf02831ba5d7fae9","impliedFormat":1},{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true,"impliedFormat":1},{"version":"5362b44ccdfba77ac392febf7f8d755af484222cfdc7a9aa1dee67bf51a352f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"4866843595b27b290ce6cc8092818ede98631734525453dec48d32d7f6726f18","impliedFormat":1},{"version":"d036da8d9e6391ad06ff5a71b8018838f0990667a178390eb48462059dba92de","impliedFormat":1},{"version":"63728b518fee91037e3d44081b0c7f3cc6fafb79a997dca5300a899277384867","impliedFormat":1},{"version":"8c4a16f8523cd932b16f3b6feb983037d2ca5699946d1f32b3787055fccbfff3","impliedFormat":1},{"version":"b76baf9af98ef1da1c3a681e66034c9ce21862fa4177235153d9719df72c2b1d","impliedFormat":1},{"version":"89d639ae440d34751d94c0333d83bc4dcfadc45cd15849f74cc1d9c0f0ce0413","impliedFormat":1},{"version":"125af9d85cb9d5e508353f10a8d52f01652d2d48b2cea54789a33e5b4d289c1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"92cfb0fd9ea018f140b7a9af0868daa80646e4f2fcbde2d60fb60c0319862ec8","impliedFormat":1},{"version":"7faa534c9c865c9338a8b46fe3fc3822f6ad58747240b103d0606e63990a4935","impliedFormat":1},{"version":"0ae6b96cc95c41d86deb7c208256f126bc58bbb6829e1e29b063aa9eed9ea3f7","impliedFormat":1},{"version":"c6e4a85271072ff15b04d09075b357407d4cdead8ca536ec613a2bb02a03285e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5761c90b0cabdd6bd1f5fb1c3bf942088fdd39e18ed35dbe39b0c34bc733bf13","affectsGlobalScope":true,"impliedFormat":1},{"version":"e9f997f4724f4a19ddb396660061b55ae90dd0e4bb7a34788f7c9d1ceaf7dade","impliedFormat":1},{"version":"f6c9e1baa89f163bc1b29001ed43d3a24734e53a756e0ed89a92e40be17af5e3","impliedFormat":1},{"version":"4103297e96869b5226a7570a295fbf5f845e9dc4a3b3f8f242993c7f8aad1d42","impliedFormat":1},{"version":"2b847f2aba41dcd69677684d5d300c08aea4e306c305fd39bf548cef19f03cfe","impliedFormat":1},{"version":"f3b323d28220d61475dc0229fad6d0bff24381766b40a30fe67743da772c82ad","impliedFormat":1},{"version":"b966a6e620b297ecd31d0359894a4018255d85da5a277b21867296e97e21fefd","impliedFormat":1},{"version":"1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","impliedFormat":1},{"version":"785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","impliedFormat":1},{"version":"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","impliedFormat":1},{"version":"cd2b61246eeb62ebc6842fe28f7b3389c081d3b6355091cffe3d12c083bd5705","impliedFormat":1},{"version":"48e2eb12763f6f72f9daf15967499f69bc4dcda00e1c93696ba25d14af513660","impliedFormat":1},{"version":"57141225815ac2d5caf7e781c6442861854149675096afd9ed5b699aff80a5e7","affectsGlobalScope":true,"impliedFormat":1},{"version":"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","impliedFormat":1},{"version":"1edbd43bfc703943f0eabfef8aac222fb3e509d9b13c60295cb206b9b75bb6be","impliedFormat":1},{"version":"12fd795309573a15193cf71d22f7e5debbec599b77ffeb3bb5c0fd1bd15cbe6d","impliedFormat":1},{"version":"4082bc53696f77cae7f84dd002d4766f3a814b9b2b0d9be4e399ee3f9afc501d","impliedFormat":1},{"version":"e32d7b239d2649efbb57eca949ffc764fb76fd8cce9f57632c0217407a79fa1a","affectsGlobalScope":true,"impliedFormat":1},{"version":"5bf73febf7c8cc741ba62e94758eed3208f62473c50702d209bcfece18e12421","affectsGlobalScope":true,"impliedFormat":1},{"version":"3758d3cb9971c113455a802ad7fa16fa216639add0f2c90767cf177f8d85106d","impliedFormat":1},{"version":"048a373805662e209f7af8717b45ae77a8052ff2272234d6f8cb84d87831f516","impliedFormat":1},{"version":"f71e0cc279b5086fa3f46f0bb467d376a18776ec7c99c45b3bd7c670097e1308","impliedFormat":1},{"version":"09e6c9b5d3f323c84bc103e387d1b41e03f5155909615ad877d862ff82758d00","affectsGlobalScope":true,"impliedFormat":1},{"version":"5af698993d8ba0b74e6d34902091b9cadab8e30d3b009746331721651b5890a4","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"27fea46e25bceaf52375ad48afdf5b9f78af76d551e30cc86077541d1c405e8e","impliedFormat":1}],"root":[[65,69],[85,93]],"options":{"composite":true,"declaration":true,"esModuleInterop":true,"inlineSources":true,"module":199,"outDir":"./","removeComments":true,"skipLibCheck":true,"sourceMap":true,"strict":true,"target":9},"fileIdsList":[[140],[73,140],[72,140],[70,140],[70,71,140],[83,140],[82,140],[75,76,77,78,79,80,81,140],[77,79,82,140],[78,140],[76,140],[94,140],[97,140],[98,103,131,140],[99,110,111,118,128,139,140],[99,100,110,118,140],[101,140],[102,103,111,119,140],[103,128,136,140],[104,106,110,118,140],[105,140],[106,107,140],[110,140],[108,110,140],[110,111,112,128,139,140],[110,111,112,125,128,131,140],[140,144],[106,113,118,128,139,140],[110,111,113,114,118,128,136,139,140],[113,115,128,136,139,140],[94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146],[110,116,140],[117,139,140],[106,110,118,128,140],[119,140],[120,140],[97,121,140],[122,138,140,144],[123,140],[124,140],[110,125,126,140],[125,127,140,142],[98,110,128,129,130,131,140],[98,128,130,140],[128,129,140],[131,140],[132,140],[110,134,135,140],[134,135,140],[103,118,128,136,140],[137,140],[118,138,140],[98,113,124,139,140],[103,140],[128,140,141],[140,142],[140,143],[98,103,110,112,121,128,139,140,142,144],[128,140,145],[68,90,91,140],[90,140],[68,89,140],[69,88,140],[68,74,86,87,140],[68,140],[84,85,140],[65,66,67,140],[84,140],[66,68,140],[65,90,140],[68,74,86,87],[68],[84,85],[84],[66,68]],"referencedMap":[[62,1],[63,1],[12,1],[10,1],[11,1],[16,1],[15,1],[2,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[23,1],[24,1],[3,1],[25,1],[4,1],[26,1],[30,1],[27,1],[28,1],[29,1],[31,1],[32,1],[33,1],[5,1],[34,1],[35,1],[36,1],[37,1],[6,1],[41,1],[38,1],[39,1],[40,1],[42,1],[7,1],[43,1],[48,1],[49,1],[44,1],[45,1],[46,1],[47,1],[8,1],[53,1],[50,1],[51,1],[52,1],[54,1],[9,1],[55,1],[64,1],[56,1],[57,1],[60,1],[58,1],[59,1],[1,1],[61,1],[14,1],[13,1],[74,2],[73,3],[71,4],[72,5],[70,1],[84,6],[83,7],[75,1],[82,8],[80,9],[78,1],[81,1],[79,10],[76,1],[77,11],[94,12],[95,12],[97,13],[98,14],[99,15],[100,16],[101,17],[102,18],[103,19],[104,20],[105,21],[106,22],[107,22],[109,23],[108,24],[110,23],[111,25],[112,26],[96,27],[146,1],[113,28],[114,29],[115,30],[147,31],[116,32],[117,33],[118,34],[119,35],[120,36],[121,37],[122,38],[123,39],[124,40],[125,41],[126,41],[127,42],[128,43],[130,44],[129,45],[131,46],[132,47],[133,1],[134,48],[135,49],[136,50],[137,51],[138,52],[139,53],[140,54],[141,55],[142,56],[143,57],[144,58],[145,59],[92,60],[91,61],[90,62],[89,63],[88,64],[69,65],[86,66],[65,1],[68,67],[87,66],[85,68],[66,1],[67,69],[93,70]],"exportedModulesMap":[[62,1],[63,1],[12,1],[10,1],[11,1],[16,1],[15,1],[2,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[23,1],[24,1],[3,1],[25,1],[4,1],[26,1],[30,1],[27,1],[28,1],[29,1],[31,1],[32,1],[33,1],[5,1],[34,1],[35,1],[36,1],[37,1],[6,1],[41,1],[38,1],[39,1],[40,1],[42,1],[7,1],[43,1],[48,1],[49,1],[44,1],[45,1],[46,1],[47,1],[8,1],[53,1],[50,1],[51,1],[52,1],[54,1],[9,1],[55,1],[64,1],[56,1],[57,1],[60,1],[58,1],[59,1],[1,1],[61,1],[14,1],[13,1],[74,2],[73,3],[71,4],[72,5],[70,1],[84,6],[83,7],[75,1],[82,8],[80,9],[78,1],[81,1],[79,10],[76,1],[77,11],[94,12],[95,12],[97,13],[98,14],[99,15],[100,16],[101,17],[102,18],[103,19],[104,20],[105,21],[106,22],[107,22],[109,23],[108,24],[110,23],[111,25],[112,26],[96,27],[146,1],[113,28],[114,29],[115,30],[147,31],[116,32],[117,33],[118,34],[119,35],[120,36],[121,37],[122,38],[123,39],[124,40],[125,41],[126,41],[127,42],[128,43],[130,44],[129,45],[131,46],[132,47],[133,1],[134,48],[135,49],[136,50],[137,51],[138,52],[139,53],[140,54],[141,55],[142,56],[143,57],[144,58],[145,59],[92,60],[91,61],[90,62],[89,63],[88,71],[69,72],[86,73],[68,67],[87,73],[85,74],[67,75]],"semanticDiagnosticsPerFile":[62,63,12,10,11,16,15,2,17,18,19,20,21,22,23,24,3,25,4,26,30,27,28,29,31,32,33,5,34,35,36,37,6,41,38,39,40,42,7,43,48,49,44,45,46,47,8,53,50,51,52,54,9,55,64,56,57,60,58,59,1,61,14,13,74,73,71,72,70,84,83,75,82,80,78,81,79,76,77,94,95,97,98,99,100,101,102,103,104,105,106,107,109,108,110,111,112,96,146,113,114,115,147,116,117,118,119,120,121,122,123,124,125,126,127,128,130,129,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,92,91,90,89,88,69,86,65,68,87,85,66,67,93],"latestChangedDtsFile":"./src/tests/index.d.mts"},"version":"5.4.5"}
1
+ {"program":{"fileNames":["../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es5.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2015.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2016.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2017.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2018.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2019.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2020.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2021.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2022.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.dom.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.scripthost.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.decorators.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../../../appdata/local/nvs/node/18.18.0/x64/node_modules/typescript/lib/lib.es2022.full.d.ts","../ts/src/lib/types/genericselffactorystaticside.mts","../ts/src/lib/types/index.mts","../ts/src/lib/types/instancesidetype.mts","../ts/src/lib/types/selffactorystaticside.mts","../ts/src/lib/selffactory.mts","../node_modules/@cyberjs.on/types/src/lib/abstractnewable.d.mts","../node_modules/@cyberjs.on/types/src/lib/tuples.d.mts","../node_modules/@cyberjs.on/types/src/lib/unionsets.d.mts","../node_modules/@cyberjs.on/types/src/lib/newable.d.mts","../node_modules/@cyberjs.on/types/src/lib/tupleofinstancesside.d.mts","../node_modules/@cyberjs.on/types/src/lib/intersectionsetasnewable.d.mts","../node_modules/@cyberjs.on/types/src/lib/state.d.mts","../node_modules/@cyberjs.on/types/src/lib/index.d.mts","../node_modules/@cyberjs.on/types/src/index.d.mts","../node_modules/@cyberjs.on/types/index.d.mts","../ts/src/lib/types/propertiesnamelist.mts","../ts/src/lib/types/fieldsnamelist.mts","../ts/src/lib/types/methodsnamelist.mts","../ts/src/lib/reflection.mts","../ts/src/lib/index.mts","../ts/src/index.mts","../ts/namespace.mts","../ts/index.mts","../ts/src/tests/index.mts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true,"impliedFormat":1},{"version":"76f838d5d49b65de83bc345c04aa54c62a3cfdb72a477dc0c0fce89a30596c30","affectsGlobalScope":true,"impliedFormat":1},{"version":"73e370058f82add1fdbc78ef3d1aab110108f2d5d9c857cb55d3361982347ace","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true,"impliedFormat":1},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true,"impliedFormat":1},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true,"impliedFormat":1},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true,"impliedFormat":1},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true,"impliedFormat":1},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"3cbad9a1ba4453443026ed38e4b8be018abb26565fa7c944376463ad9df07c41","impliedFormat":1},{"version":"afc2776e7648ade67638875fa7b6fbc33213d6676bd402648a17e499af6f878a","signature":"793cba541ad67ecb2aa2d0e9c97b8959ef605c281f26f8b7adb1b9ac818775b4","impliedFormat":99},{"version":"1983f13539d36f55db7cfedde95d6ca94d58a4490957c3ea70c51c3fe6a3ca74","impliedFormat":99},{"version":"e269c9ac97e6d6d6c2021b6b0659dae36b65d1f33e18ca905cb6133fa1bf7cad","signature":"d1722e218400c45aa6d3fdcaa36d1964f1d98fd888f0d8b809e6e52654902100","impliedFormat":99},{"version":"f3e9535ff0cdbfd6deaf8f5bad765613a7b4300d03a49848cbeb966fb343ebdf","signature":"b1eda5027675a09191adabcbdf1976a3b5b319ce6795929677c1fefa61d1aaaa","impliedFormat":99},{"version":"f26fbe920f9bac8541fed9f5d14a6f43789dca87556c653890a9db89acb3dbaf","signature":"e6974605f2d6577929cf9cb11748fcea3a1c31c7802a698f938d94c216bf535b","impliedFormat":99},{"version":"20dbbba0c64020ec8f03a7df348a1521f17b36d72247659e095a76dc036849be","impliedFormat":99},{"version":"abfa5221ec421e3b05c91cc7a576b21eb71f0fb6995ff2acd9cec7339d7eecf3","impliedFormat":99},{"version":"147a463c0fc4eb432d5582cb2d0d6a6c1dc3e7d0def10f0459c5a12a94566ff3","impliedFormat":99},{"version":"ab12c49e92462c46a46a5324549257f1aca86ab17370deec805c79bb02a89e03","impliedFormat":99},{"version":"e321ad8f4b015b5d9a63b86e504532f6e564967fcc2197cdd9513f48a9ffd334","impliedFormat":99},{"version":"cb74902297fc2619f2f90bc4c3d207d07e1ec339906062d18100d8dbd25f136c","impliedFormat":99},{"version":"feed270bd9ae1cb0fa41bf202252b780df5c49dee13f740977b3f309f5caad11","impliedFormat":99},{"version":"9097d942ab7af0aef37b68857a16f3992f13da9ae1186a942adb0f39aabb4fcb","impliedFormat":99},{"version":"a56fea764bdc28ec26905310daa3afcbcf287814d424bba291f67ad21f68ae81","impliedFormat":99},{"version":"f9d3b407db8ec098b442ddd1ad8d65a3d6174ff63bb482752d382baf44b342fa","impliedFormat":99},{"version":"9a96efbaf40ba67562122bfc3476ed5cf1fff0a471ba38a8f5c8bd6319159abf","signature":"fa8d33caf1002c692c02680bd87b29513690512d624fe25d81533043f644dcb3","impliedFormat":99},{"version":"3f35c9f808d078d599764b53b589aab71ea105bd2b766021ae1ad2091bfee8e1","signature":"2b3e7576c5cab829a184235f83def9315a729cf9346afaa26bca0babaeeff894","impliedFormat":99},{"version":"8bf3c69b089dd2dd1c430c767838d584e91a65709a0ced07125c7aaed2f691ee","signature":"d4d8fb24e4a79d39cd0043b862181911c1dc7e58994041485c34808ec78181ac","impliedFormat":99},{"version":"84bb073a8a635cc0f8d32ba7b7b8d1f60dd52e53f41778814d504bb3ca5fbb4f","signature":"143435ea18e138b0ba540db0339e1aa053dd4a80f730d3b811874693dee7947c","impliedFormat":99},{"version":"3d1fc9909d5e629f3ef58cab022216631aabb2a42b5dc55f7f074f0b3c53d221","impliedFormat":99},{"version":"be68d9ca77d32c36102704e750c1e2a90a4a5215dea624b8885103d3e8bfdbab","impliedFormat":99},{"version":"9abecc68e861fea0eff9a0ea4427365882b88a9e929d097c5f3d2203e0b4aefa","impliedFormat":99},{"version":"34cd981f7053edf395bf565417609e14856b9078fa53342c9fcc2f044b7ee1e3","impliedFormat":99},{"version":"7b6948500966e34b9621b983201bbad2a4d1e68836671fbc4378775cbd49681b","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"b4473933ebd454f0b38bf002e92738f978f5197ad47627e6b2a6647046997256","impliedFormat":1},{"version":"a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a","impliedFormat":1},{"version":"f749812878fecfa53cfc13b36e5d35086fb6377983a9df44175da83ccc23af1f","affectsGlobalScope":true,"impliedFormat":1},{"version":"84168c1e1f6e21906eea5167154748c1e9fea5ef6f2e1b2b2d2cb19e89fbd81a","impliedFormat":1},{"version":"8155b7b79b6e7d7c13d3203f40cd8c201bdf2c0c25af536992d8962a28cac561","affectsGlobalScope":true,"impliedFormat":1},{"version":"5ca34a9a8b59bcc0e58730e702aa0823557122c86d6a6e1b6eeae85babb48513","impliedFormat":1},{"version":"c1d93a28c5312d757e449ad068c3a43ad0d961ab06e6a3b7aaa7d48c204a1deb","impliedFormat":1},{"version":"77b2a2f1719b4c19b79bf2bf4833f67770e30767e49102a6b75ab3b3cf8b5db7","affectsGlobalScope":true,"impliedFormat":1},{"version":"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","impliedFormat":1},{"version":"57e75559358fd6f9593b44506d75871004c124a70b6be3e0ce18597b71a08fc2","impliedFormat":1},{"version":"160f307d5ccc1f934de7fbed97f1d2016402f90f204c484e20bd5c2a19a4172a","impliedFormat":1},{"version":"9c1363edb96f09d8d2140284a39015dba08d5b01a98334ba9ad8784ab160c835","impliedFormat":1},{"version":"2a56407acc5881608ef5fa4c0688d446df6adfd010578ce83dd1b747d895b17f","impliedFormat":1},{"version":"ffa8324a4c0611f9a50262fb36f097eeabe0fa0d71755aa67156da13cde1b932","impliedFormat":1},{"version":"ad5c7ca4a4dc8e39e0aa221b981f6306ca1c037c99bd4902bf02831ba5d7fae9","impliedFormat":1},{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true,"impliedFormat":1},{"version":"5362b44ccdfba77ac392febf7f8d755af484222cfdc7a9aa1dee67bf51a352f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"4866843595b27b290ce6cc8092818ede98631734525453dec48d32d7f6726f18","impliedFormat":1},{"version":"d036da8d9e6391ad06ff5a71b8018838f0990667a178390eb48462059dba92de","impliedFormat":1},{"version":"63728b518fee91037e3d44081b0c7f3cc6fafb79a997dca5300a899277384867","impliedFormat":1},{"version":"8c4a16f8523cd932b16f3b6feb983037d2ca5699946d1f32b3787055fccbfff3","impliedFormat":1},{"version":"b76baf9af98ef1da1c3a681e66034c9ce21862fa4177235153d9719df72c2b1d","impliedFormat":1},{"version":"89d639ae440d34751d94c0333d83bc4dcfadc45cd15849f74cc1d9c0f0ce0413","impliedFormat":1},{"version":"125af9d85cb9d5e508353f10a8d52f01652d2d48b2cea54789a33e5b4d289c1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"92cfb0fd9ea018f140b7a9af0868daa80646e4f2fcbde2d60fb60c0319862ec8","impliedFormat":1},{"version":"7faa534c9c865c9338a8b46fe3fc3822f6ad58747240b103d0606e63990a4935","impliedFormat":1},{"version":"0ae6b96cc95c41d86deb7c208256f126bc58bbb6829e1e29b063aa9eed9ea3f7","impliedFormat":1},{"version":"c6e4a85271072ff15b04d09075b357407d4cdead8ca536ec613a2bb02a03285e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5761c90b0cabdd6bd1f5fb1c3bf942088fdd39e18ed35dbe39b0c34bc733bf13","affectsGlobalScope":true,"impliedFormat":1},{"version":"e9f997f4724f4a19ddb396660061b55ae90dd0e4bb7a34788f7c9d1ceaf7dade","impliedFormat":1},{"version":"f6c9e1baa89f163bc1b29001ed43d3a24734e53a756e0ed89a92e40be17af5e3","impliedFormat":1},{"version":"4103297e96869b5226a7570a295fbf5f845e9dc4a3b3f8f242993c7f8aad1d42","impliedFormat":1},{"version":"2b847f2aba41dcd69677684d5d300c08aea4e306c305fd39bf548cef19f03cfe","impliedFormat":1},{"version":"f3b323d28220d61475dc0229fad6d0bff24381766b40a30fe67743da772c82ad","impliedFormat":1},{"version":"b966a6e620b297ecd31d0359894a4018255d85da5a277b21867296e97e21fefd","impliedFormat":1},{"version":"1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","impliedFormat":1},{"version":"785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","impliedFormat":1},{"version":"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","impliedFormat":1},{"version":"cd2b61246eeb62ebc6842fe28f7b3389c081d3b6355091cffe3d12c083bd5705","impliedFormat":1},{"version":"48e2eb12763f6f72f9daf15967499f69bc4dcda00e1c93696ba25d14af513660","impliedFormat":1},{"version":"57141225815ac2d5caf7e781c6442861854149675096afd9ed5b699aff80a5e7","affectsGlobalScope":true,"impliedFormat":1},{"version":"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","impliedFormat":1},{"version":"1edbd43bfc703943f0eabfef8aac222fb3e509d9b13c60295cb206b9b75bb6be","impliedFormat":1},{"version":"12fd795309573a15193cf71d22f7e5debbec599b77ffeb3bb5c0fd1bd15cbe6d","impliedFormat":1},{"version":"4082bc53696f77cae7f84dd002d4766f3a814b9b2b0d9be4e399ee3f9afc501d","impliedFormat":1},{"version":"e32d7b239d2649efbb57eca949ffc764fb76fd8cce9f57632c0217407a79fa1a","affectsGlobalScope":true,"impliedFormat":1},{"version":"5bf73febf7c8cc741ba62e94758eed3208f62473c50702d209bcfece18e12421","affectsGlobalScope":true,"impliedFormat":1},{"version":"3758d3cb9971c113455a802ad7fa16fa216639add0f2c90767cf177f8d85106d","impliedFormat":1},{"version":"048a373805662e209f7af8717b45ae77a8052ff2272234d6f8cb84d87831f516","impliedFormat":1},{"version":"f71e0cc279b5086fa3f46f0bb467d376a18776ec7c99c45b3bd7c670097e1308","impliedFormat":1},{"version":"09e6c9b5d3f323c84bc103e387d1b41e03f5155909615ad877d862ff82758d00","affectsGlobalScope":true,"impliedFormat":1},{"version":"5af698993d8ba0b74e6d34902091b9cadab8e30d3b009746331721651b5890a4","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"27fea46e25bceaf52375ad48afdf5b9f78af76d551e30cc86077541d1c405e8e","impliedFormat":1}],"root":[[65,69],[80,88]],"options":{"composite":true,"declaration":true,"esModuleInterop":true,"inlineSources":true,"module":199,"outDir":"./","removeComments":true,"skipLibCheck":true,"sourceMap":true,"strict":true,"target":9},"fileIdsList":[[135],[78,135],[77,135],[70,71,72,73,74,75,76,135],[72,74,77,135],[73,135],[71,135],[89,135],[92,135],[93,98,126,135],[94,105,106,113,123,134,135],[94,95,105,113,135],[96,135],[97,98,106,114,135],[98,123,131,135],[99,101,105,113,135],[100,135],[101,102,135],[105,135],[103,105,135],[105,106,107,123,134,135],[105,106,107,120,123,126,135],[135,139],[101,108,113,123,134,135],[105,106,108,109,113,123,131,134,135],[108,110,123,131,134,135],[89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141],[105,111,135],[112,134,135],[101,105,113,123,135],[114,135],[115,135],[92,116,135],[117,133,135,139],[118,135],[119,135],[105,120,121,135],[120,122,135,137],[93,105,123,124,125,126,135],[93,123,125,135],[123,124,135],[126,135],[127,135],[105,129,130,135],[129,130,135],[98,113,123,131,135],[132,135],[113,133,135],[93,108,119,134,135],[98,135],[123,135,136],[135,137],[135,138],[93,98,105,107,116,123,134,135,137,139],[123,135,140],[66,85,86,135],[85,135],[66,84,135],[69,83,135],[66,67,81,82,135],[68,135],[79,80,135],[65,135],[79,135],[66,67,135],[66,67,81,82],[68],[79,80],[79],[66,67]],"referencedMap":[[62,1],[63,1],[12,1],[10,1],[11,1],[16,1],[15,1],[2,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[23,1],[24,1],[3,1],[25,1],[4,1],[26,1],[30,1],[27,1],[28,1],[29,1],[31,1],[32,1],[33,1],[5,1],[34,1],[35,1],[36,1],[37,1],[6,1],[41,1],[38,1],[39,1],[40,1],[42,1],[7,1],[43,1],[48,1],[49,1],[44,1],[45,1],[46,1],[47,1],[8,1],[53,1],[50,1],[51,1],[52,1],[54,1],[9,1],[55,1],[64,1],[56,1],[57,1],[60,1],[58,1],[59,1],[1,1],[61,1],[14,1],[13,1],[79,2],[78,3],[70,1],[77,4],[75,5],[73,1],[76,1],[74,6],[71,1],[72,7],[89,8],[90,8],[92,9],[93,10],[94,11],[95,12],[96,13],[97,14],[98,15],[99,16],[100,17],[101,18],[102,18],[104,19],[103,20],[105,19],[106,21],[107,22],[91,23],[141,1],[108,24],[109,25],[110,26],[142,27],[111,28],[112,29],[113,30],[114,31],[115,32],[116,33],[117,34],[118,35],[119,36],[120,37],[121,37],[122,38],[123,39],[125,40],[124,41],[126,42],[127,43],[128,1],[129,44],[130,45],[131,46],[132,47],[133,48],[134,49],[135,50],[136,51],[137,52],[138,53],[139,54],[140,55],[87,56],[86,57],[85,58],[84,59],[83,60],[69,61],[81,62],[65,1],[66,63],[67,1],[82,62],[80,64],[68,65],[88,57]],"exportedModulesMap":[[62,1],[63,1],[12,1],[10,1],[11,1],[16,1],[15,1],[2,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[23,1],[24,1],[3,1],[25,1],[4,1],[26,1],[30,1],[27,1],[28,1],[29,1],[31,1],[32,1],[33,1],[5,1],[34,1],[35,1],[36,1],[37,1],[6,1],[41,1],[38,1],[39,1],[40,1],[42,1],[7,1],[43,1],[48,1],[49,1],[44,1],[45,1],[46,1],[47,1],[8,1],[53,1],[50,1],[51,1],[52,1],[54,1],[9,1],[55,1],[64,1],[56,1],[57,1],[60,1],[58,1],[59,1],[1,1],[61,1],[14,1],[13,1],[79,2],[78,3],[70,1],[77,4],[75,5],[73,1],[76,1],[74,6],[71,1],[72,7],[89,8],[90,8],[92,9],[93,10],[94,11],[95,12],[96,13],[97,14],[98,15],[99,16],[100,17],[101,18],[102,18],[104,19],[103,20],[105,19],[106,21],[107,22],[91,23],[141,1],[108,24],[109,25],[110,26],[142,27],[111,28],[112,29],[113,30],[114,31],[115,32],[116,33],[117,34],[118,35],[119,36],[120,37],[121,37],[122,38],[123,39],[125,40],[124,41],[126,42],[127,43],[128,1],[129,44],[130,45],[131,46],[132,47],[133,48],[134,49],[135,50],[136,51],[137,52],[138,53],[139,54],[140,55],[87,56],[86,57],[85,58],[84,59],[83,66],[69,67],[81,68],[66,63],[82,68],[80,69],[68,70]],"semanticDiagnosticsPerFile":[62,63,12,10,11,16,15,2,17,18,19,20,21,22,23,24,3,25,4,26,30,27,28,29,31,32,33,5,34,35,36,37,6,41,38,39,40,42,7,43,48,49,44,45,46,47,8,53,50,51,52,54,9,55,64,56,57,60,58,59,1,61,14,13,79,78,70,77,75,73,76,74,71,72,89,90,92,93,94,95,96,97,98,99,100,101,102,104,103,105,106,107,91,141,108,109,110,142,111,112,113,114,115,116,117,118,119,120,121,122,123,125,124,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,87,86,85,84,83,69,81,65,66,67,82,80,68,88],"latestChangedDtsFile":"./src/lib/reflection.d.mts"},"version":"5.4.5"}
@@ -1,3 +0,0 @@
1
- ;
2
- export {};
3
- //# sourceMappingURL=genericSelfFactoryStaticType.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"genericSelfFactoryStaticType.mjs","sourceRoot":"","sources":["../../../../ts/src/lib/types/genericSelfFactoryStaticType.mts"],"names":[],"mappings":"AAUC,CAAC","sourcesContent":["export interface GenericSelfFactoryStaticType<C> {\n\n new(...args: any): C;\n\n getOwnInstance(\n this: {\n new(...args: any): C;\n }, ...args: any\n ): C;\n\n};\n"]}
@@ -1,2 +0,0 @@
1
- export interface SelfFactoryConstructorType {
2
- }
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=selfFactoryConstructorType.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"selfFactoryConstructorType.mjs","sourceRoot":"","sources":["../../../../ts/src/lib/types/selfFactoryConstructorType.mts"],"names":[],"mappings":"","sourcesContent":["/**\n *\n * a princípio, o tipo referencia sempre o lado estático de uma instância, decerto que para\n * referenciar uma constante como um tipo dentro de uma estrutura abstrata, como uma interface ou\n * uma classe abstrata, deve-se usar a declaração \"typeof\". Isso não é necessário quando se usa uma\n * classe comum como tipo, porque, implicitamente, o TS declara uma interface para toda classe\n * declarada. Isto pode ser comprovado ao se usar a declaração \"implements\" referenciando outra\n * classe, que, na verdade, o que estará sendo referenciado é a interface daquela classe.\n * Logo, tipo é uma coisa, instância do tipo, outra.\n */\nexport interface SelfFactoryConstructorType {\n\n // instanceMethod(): void;\n\n}\n"]}
@@ -1,8 +0,0 @@
1
- import { GenericSelfFactoryStaticType } from "./index.mjs";
2
- import { SelfFactoryConstructorType } from "./selfFactoryConstructorType.mjs";
3
- export interface SelfFactoryStaticType extends GenericSelfFactoryStaticType<SelfFactoryConstructorType> {
4
- new (...args: any): SelfFactoryConstructorType;
5
- getOwnInstance<T extends SelfFactoryStaticType, U extends InstanceType<T>>(this: {
6
- new (...args: any): U;
7
- }, ...args: any): U;
8
- }
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=selfFactoryStaticType.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"selfFactoryStaticType.mjs","sourceRoot":"","sources":["../../../../ts/src/lib/types/selfFactoryStaticType.mts"],"names":[],"mappings":"","sourcesContent":["import { GenericSelfFactoryStaticType } from \"./index.mjs\";\nimport { SelfFactoryConstructorType } from \"./selfFactoryConstructorType.mjs\";\n\n\nexport interface SelfFactoryStaticType\n extends\n GenericSelfFactoryStaticType<SelfFactoryConstructorType>\n{\n\n // here is the secret to reference the static side\n new(...args: any): SelfFactoryConstructorType;\n\n getOwnInstance<\n /**\n *\n * esta interface, como informa informa o próprio nome, referencia o lado estático de quem\n * a declara, logo, neste caso, o this se refere ao lado estático, sendo o próprio\n * próSelfFactoryStaticType.\n */\n // U extends this,\n\n T extends SelfFactoryStaticType,\n U extends InstanceType<T>\n >(\n this: {\n new(...args: any): U\n },\n ...args: any\n ): U;\n\n}\n"]}