@rslint/core 0.3.0 → 0.3.1
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.
- package/dist/browser.d.ts +39 -0
- package/dist/browser.d.ts.map +1 -0
- package/dist/browser.js +147 -0
- package/dist/cli.d.ts +2 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +128 -0
- package/dist/config-loader.d.ts +14 -0
- package/dist/config-loader.d.ts.map +1 -0
- package/dist/config-loader.js +107 -0
- package/dist/configs/import.d.ts +6 -0
- package/dist/configs/import.d.ts.map +1 -0
- package/dist/configs/import.js +7 -0
- package/dist/configs/index.d.ts +12 -0
- package/dist/configs/index.d.ts.map +1 -0
- package/dist/configs/index.js +16 -0
- package/dist/configs/javascript.d.ts +6 -0
- package/dist/configs/javascript.d.ts.map +1 -0
- package/dist/configs/javascript.js +73 -0
- package/dist/configs/react.d.ts +6 -0
- package/dist/configs/react.d.ts.map +1 -0
- package/dist/configs/react.js +31 -0
- package/dist/configs/typescript.d.ts +8 -0
- package/dist/configs/typescript.d.ts.map +1 -0
- package/dist/configs/typescript.js +112 -0
- package/dist/define-config.d.ts +21 -0
- package/dist/define-config.d.ts.map +1 -0
- package/dist/define-config.js +6 -0
- package/dist/index.d.ts +19 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +31 -0
- package/dist/node.d.ts +31 -0
- package/dist/node.d.ts.map +1 -0
- package/dist/node.js +116 -0
- package/dist/service.d.ts +30 -0
- package/dist/service.d.ts.map +1 -0
- package/dist/service.js +71 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -0
- package/dist/types.d.ts +342 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +1 -0
- package/dist/worker.d.ts +2 -0
- package/dist/worker.d.ts.map +1 -0
- package/dist/worker.js +112 -0
- package/package.json +8 -8
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
// Aligned with official @typescript-eslint/recommended.
|
|
2
|
+
// Includes the eslint-recommended override layer (disables core rules handled by TS,
|
|
3
|
+
// enables TS-beneficial rules).
|
|
4
|
+
// Rules commented out with "not implemented" are in the official preset but not yet available.
|
|
5
|
+
const recommended = {
|
|
6
|
+
files: ['**/*.ts', '**/*.tsx', '**/*.mts', '**/*.cts'],
|
|
7
|
+
languageOptions: {
|
|
8
|
+
parserOptions: {
|
|
9
|
+
projectService: true,
|
|
10
|
+
},
|
|
11
|
+
},
|
|
12
|
+
rules: {
|
|
13
|
+
// --- Core ESLint rules (eslint:recommended) ---
|
|
14
|
+
// Rules handled by TypeScript are turned off per the official
|
|
15
|
+
// typescript-eslint eslint-recommended override.
|
|
16
|
+
'constructor-super': 'off',
|
|
17
|
+
'getter-return': 'off',
|
|
18
|
+
'no-class-assign': 'off',
|
|
19
|
+
'no-const-assign': 'off',
|
|
20
|
+
'no-dupe-args': 'off',
|
|
21
|
+
// 'no-dupe-class-members': 'off', // not implemented
|
|
22
|
+
'no-dupe-keys': 'off',
|
|
23
|
+
// 'no-func-assign': 'off', // not implemented
|
|
24
|
+
// 'no-import-assign': 'off', // not implemented
|
|
25
|
+
// 'no-new-native-nonconstructor': 'off', // not implemented
|
|
26
|
+
// 'no-new-symbol': 'off', // not implemented (deprecated, use no-new-native-nonconstructor)
|
|
27
|
+
// 'no-obj-calls': 'off', // not implemented
|
|
28
|
+
// 'no-redeclare': 'off', // not implemented
|
|
29
|
+
// 'no-setter-return': 'off', // not implemented
|
|
30
|
+
// 'no-this-before-super': 'off', // not implemented
|
|
31
|
+
// 'no-undef': 'off', // not implemented
|
|
32
|
+
// 'no-unreachable': 'off', // not implemented
|
|
33
|
+
// 'no-unsafe-negation': 'off', // not implemented
|
|
34
|
+
// 'no-with': 'off', // not implemented
|
|
35
|
+
// TS-beneficial rules enabled by eslint-recommended override
|
|
36
|
+
// 'no-var': 'error', // not implemented
|
|
37
|
+
// 'prefer-const': 'error', // not implemented
|
|
38
|
+
// 'prefer-rest-params': 'error', // not implemented
|
|
39
|
+
// 'prefer-spread': 'error', // not implemented
|
|
40
|
+
// Remaining eslint:recommended rules (not turned off by TS)
|
|
41
|
+
// 'no-control-regex': 'error', // not implemented
|
|
42
|
+
// 'no-delete-var': 'error', // not implemented
|
|
43
|
+
// 'no-dupe-else-if': 'error', // not implemented
|
|
44
|
+
// 'no-empty-character-class': 'error', // not implemented
|
|
45
|
+
// 'no-empty-static-block': 'error', // not implemented
|
|
46
|
+
// 'no-ex-assign': 'error', // not implemented
|
|
47
|
+
// 'no-extra-boolean-cast': 'error', // not implemented
|
|
48
|
+
// 'no-fallthrough': 'error', // not implemented
|
|
49
|
+
// 'no-global-assign': 'error', // not implemented
|
|
50
|
+
// 'no-invalid-regexp': 'error', // not implemented
|
|
51
|
+
// 'no-irregular-whitespace': 'error', // not implemented
|
|
52
|
+
// 'no-misleading-character-class': 'error', // not implemented
|
|
53
|
+
// 'no-nonoctal-decimal-escape': 'error', // not implemented
|
|
54
|
+
// 'no-octal': 'error', // not implemented
|
|
55
|
+
// 'no-prototype-builtins': 'error', // not implemented
|
|
56
|
+
// 'no-regex-spaces': 'error', // not implemented
|
|
57
|
+
// 'no-self-assign': 'error', // not implemented
|
|
58
|
+
// 'no-shadow-restricted-names': 'error', // not implemented
|
|
59
|
+
// 'no-unexpected-multiline': 'error', // not implemented
|
|
60
|
+
// 'no-unsafe-finally': 'error', // not implemented
|
|
61
|
+
// 'no-unsafe-optional-chaining': 'error', // not implemented
|
|
62
|
+
// 'no-unused-labels': 'error', // not implemented
|
|
63
|
+
// 'no-unused-private-class-members': 'error', // not implemented
|
|
64
|
+
// 'no-unassigned-vars': 'error', // not implemented
|
|
65
|
+
// 'no-useless-assignment': 'error', // not implemented
|
|
66
|
+
// 'no-useless-backreference': 'error', // not implemented
|
|
67
|
+
// 'no-useless-catch': 'error', // not implemented
|
|
68
|
+
// 'no-useless-escape': 'error', // not implemented
|
|
69
|
+
// 'preserve-caught-error': 'error', // not implemented
|
|
70
|
+
// 'require-yield': 'error', // not implemented
|
|
71
|
+
// 'use-isnan': 'error', // not implemented
|
|
72
|
+
// 'valid-typeof': 'error', // not implemented
|
|
73
|
+
'for-direction': 'error',
|
|
74
|
+
'no-async-promise-executor': 'error',
|
|
75
|
+
'no-case-declarations': 'error',
|
|
76
|
+
'no-compare-neg-zero': 'error',
|
|
77
|
+
'no-cond-assign': 'error',
|
|
78
|
+
'no-constant-binary-expression': 'error',
|
|
79
|
+
'no-constant-condition': 'error',
|
|
80
|
+
'no-debugger': 'error',
|
|
81
|
+
'no-duplicate-case': 'error',
|
|
82
|
+
'no-empty': 'error',
|
|
83
|
+
'no-empty-pattern': 'error',
|
|
84
|
+
'no-loss-of-precision': 'error',
|
|
85
|
+
'no-sparse-arrays': 'error',
|
|
86
|
+
// --- @typescript-eslint/recommended rules ---
|
|
87
|
+
'@typescript-eslint/ban-ts-comment': 'error',
|
|
88
|
+
'no-array-constructor': 'off',
|
|
89
|
+
'@typescript-eslint/no-array-constructor': 'error',
|
|
90
|
+
'@typescript-eslint/no-duplicate-enum-values': 'error',
|
|
91
|
+
// '@typescript-eslint/no-empty-object-type': 'error', // not implemented
|
|
92
|
+
'@typescript-eslint/no-explicit-any': 'error',
|
|
93
|
+
'@typescript-eslint/no-extra-non-null-assertion': 'error',
|
|
94
|
+
'@typescript-eslint/no-misused-new': 'error',
|
|
95
|
+
'@typescript-eslint/no-namespace': 'error',
|
|
96
|
+
'@typescript-eslint/no-non-null-asserted-optional-chain': 'error',
|
|
97
|
+
'@typescript-eslint/no-require-imports': 'error',
|
|
98
|
+
'@typescript-eslint/no-this-alias': 'error',
|
|
99
|
+
// '@typescript-eslint/no-unnecessary-type-constraint': 'error', // not implemented
|
|
100
|
+
// '@typescript-eslint/no-unsafe-declaration-merging': 'error', // not implemented
|
|
101
|
+
// '@typescript-eslint/no-unsafe-function-type': 'error', // not implemented
|
|
102
|
+
// 'no-unused-expressions': 'off', // not implemented
|
|
103
|
+
// '@typescript-eslint/no-unused-expressions': 'error', // not implemented
|
|
104
|
+
'no-unused-vars': 'off',
|
|
105
|
+
'@typescript-eslint/no-unused-vars': 'error',
|
|
106
|
+
// '@typescript-eslint/no-wrapper-object-types': 'error', // not implemented
|
|
107
|
+
'@typescript-eslint/prefer-as-const': 'error',
|
|
108
|
+
'@typescript-eslint/prefer-namespace-keyword': 'error',
|
|
109
|
+
'@typescript-eslint/triple-slash-reference': 'error',
|
|
110
|
+
},
|
|
111
|
+
};
|
|
112
|
+
export { recommended };
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/** Glob patterns for files this config applies to */
|
|
2
|
+
export interface RslintConfigEntry {
|
|
3
|
+
files?: string[];
|
|
4
|
+
ignores?: string[];
|
|
5
|
+
languageOptions?: {
|
|
6
|
+
parserOptions?: {
|
|
7
|
+
projectService?: boolean;
|
|
8
|
+
project?: string | string[];
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
rules?: Record<string, RuleSeverity | [RuleSeverity, ...unknown[]]>;
|
|
12
|
+
plugins?: string[];
|
|
13
|
+
settings?: Record<string, unknown>;
|
|
14
|
+
}
|
|
15
|
+
type RuleSeverity = 'off' | 'warn' | 'error';
|
|
16
|
+
/**
|
|
17
|
+
* Type-safe config helper. Returns the config array as-is (identity function).
|
|
18
|
+
*/
|
|
19
|
+
export declare function defineConfig(config: RslintConfigEntry[]): RslintConfigEntry[];
|
|
20
|
+
export {};
|
|
21
|
+
//# sourceMappingURL=define-config.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"define-config.d.ts","sourceRoot":"","sources":["../src/define-config.ts"],"names":[],"mappings":"AAAA,qDAAqD;AACrD,MAAM,WAAW,iBAAiB;IAChC,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB,eAAe,CAAC,EAAE;QAChB,aAAa,CAAC,EAAE;YACd,cAAc,CAAC,EAAE,OAAO,CAAC;YACzB,OAAO,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;SAC7B,CAAC;KACH,CAAC;IACF,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,YAAY,GAAG,CAAC,YAAY,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC,CAAC;IACpE,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CACpC;AAED,KAAK,YAAY,GAAG,KAAK,GAAG,MAAM,GAAG,OAAO,CAAC;AAE7C;;GAEG;AACH,wBAAgB,YAAY,CAAC,MAAM,EAAE,iBAAiB,EAAE,GAAG,iBAAiB,EAAE,CAE7E"}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { LintOptions, LintResponse, ApplyFixesRequest, ApplyFixesResponse, GetAstInfoRequest, GetAstInfoResponse } from './service.js';
|
|
2
|
+
export { defineConfig } from './define-config.js';
|
|
3
|
+
export type { RslintConfigEntry } from './define-config.js';
|
|
4
|
+
export { ts, js, reactPlugin, importPlugin } from './configs/index.js';
|
|
5
|
+
// Export the main RSLintService class for direct usage
|
|
6
|
+
export { RSLintService } from './service.js';
|
|
7
|
+
// Export specific implementations for advanced usage
|
|
8
|
+
export { NodeRslintService } from './node.js';
|
|
9
|
+
// For backward compatibility and convenience
|
|
10
|
+
export declare function lint(options: LintOptions): Promise<LintResponse>;
|
|
11
|
+
// Convenience function for applying fixes
|
|
12
|
+
export declare function applyFixes(options: ApplyFixesRequest): Promise<ApplyFixesResponse>;
|
|
13
|
+
// Convenience function for getting AST info
|
|
14
|
+
export declare function getAstInfo(options: GetAstInfoRequest): Promise<GetAstInfoResponse>;
|
|
15
|
+
// Export all types
|
|
16
|
+
export { type Diagnostic, type LintOptions, type LintResponse, type ApplyFixesRequest, type ApplyFixesResponse, type LanguageOptions, type ParserOptions, type RSlintOptions, type RslintServiceInterface,
|
|
17
|
+
// AST Info types
|
|
18
|
+
type GetAstInfoRequest, type GetAstInfoResponse, type NodeInfo, type TypeInfo, type SymbolInfo, type SignatureInfo, type FlowInfo, type ParameterInfo, type TypeParamInfo, type IndexInfo, type TypePredicateInfo, } from './types.js';
|
|
19
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EACL,WAAW,EACX,YAAY,EAEZ,iBAAiB,EACjB,kBAAkB,EAClB,iBAAiB,EACjB,kBAAkB,EACnB,MAAM,cAAc,CAAC;AAEtB,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAClD,YAAY,EAAE,iBAAiB,EAAE,MAAM,oBAAoB,CAAC;AAC5D,OAAO,EAAE,EAAE,EAAE,EAAE,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAEvE,uDAAuD;AACvD,OAAO,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAE7C,qDAAqD;AACrD,OAAO,EAAE,iBAAiB,EAAE,MAAM,WAAW,CAAC;AAE9C,6CAA6C;AAC7C,wBAAsB,IAAI,CAAC,OAAO,EAAE,WAAW,GAAG,OAAO,CAAC,YAAY,CAAC,CAStE;AAED,0CAA0C;AAC1C,wBAAsB,UAAU,CAC9B,OAAO,EAAE,iBAAiB,GACzB,OAAO,CAAC,kBAAkB,CAAC,CAK7B;AAED,4CAA4C;AAC5C,wBAAsB,UAAU,CAC9B,OAAO,EAAE,iBAAiB,GACzB,OAAO,CAAC,kBAAkB,CAAC,CAK7B;AAED,mBAAmB;AACnB,OAAO,EACL,KAAK,UAAU,EACf,KAAK,WAAW,EAChB,KAAK,YAAY,EACjB,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,eAAe,EACpB,KAAK,aAAa,EAClB,KAAK,aAAa,EAClB,KAAK,sBAAsB;AAC3B,iBAAiB;AACjB,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,QAAQ,EACb,KAAK,QAAQ,EACb,KAAK,UAAU,EACf,KAAK,aAAa,EAClB,KAAK,QAAQ,EACb,KAAK,aAAa,EAClB,KAAK,aAAa,EAClB,KAAK,SAAS,EACd,KAAK,iBAAiB,GACvB,MAAM,YAAY,CAAC"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { NodeRslintService } from './node.js';
|
|
2
|
+
import { RSLintService, } from './service.js';
|
|
3
|
+
export { defineConfig } from './define-config.js';
|
|
4
|
+
export { ts, js, reactPlugin, importPlugin } from './configs/index.js';
|
|
5
|
+
// Export the main RSLintService class for direct usage
|
|
6
|
+
export { RSLintService } from './service.js';
|
|
7
|
+
// Export specific implementations for advanced usage
|
|
8
|
+
export { NodeRslintService } from './node.js';
|
|
9
|
+
// For backward compatibility and convenience
|
|
10
|
+
export async function lint(options) {
|
|
11
|
+
const service = new RSLintService(new NodeRslintService({
|
|
12
|
+
workingDirectory: options.workingDirectory,
|
|
13
|
+
}));
|
|
14
|
+
const result = await service.lint(options);
|
|
15
|
+
await service.close();
|
|
16
|
+
return result;
|
|
17
|
+
}
|
|
18
|
+
// Convenience function for applying fixes
|
|
19
|
+
export async function applyFixes(options) {
|
|
20
|
+
const service = new RSLintService(new NodeRslintService());
|
|
21
|
+
const result = await service.applyFixes(options);
|
|
22
|
+
await service.close();
|
|
23
|
+
return result;
|
|
24
|
+
}
|
|
25
|
+
// Convenience function for getting AST info
|
|
26
|
+
export async function getAstInfo(options) {
|
|
27
|
+
const service = new RSLintService(new NodeRslintService());
|
|
28
|
+
const result = await service.getAstInfo(options);
|
|
29
|
+
await service.close();
|
|
30
|
+
return result;
|
|
31
|
+
}
|
package/dist/node.d.ts
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import type { RslintServiceInterface, RSlintOptions } from './types.js';
|
|
2
|
+
/**
|
|
3
|
+
* Node.js implementation of RslintService using child processes
|
|
4
|
+
*/
|
|
5
|
+
export declare class NodeRslintService implements RslintServiceInterface {
|
|
6
|
+
private nextMessageId;
|
|
7
|
+
private pendingMessages;
|
|
8
|
+
private rslintPath;
|
|
9
|
+
private process;
|
|
10
|
+
private chunks;
|
|
11
|
+
private chunkSize;
|
|
12
|
+
private expectedSize;
|
|
13
|
+
constructor(options?: RSlintOptions);
|
|
14
|
+
/**
|
|
15
|
+
* Send a message to the rslint process
|
|
16
|
+
*/
|
|
17
|
+
sendMessage(kind: string, data: any): Promise<any>;
|
|
18
|
+
/**
|
|
19
|
+
* Handle incoming binary data chunks
|
|
20
|
+
*/
|
|
21
|
+
private handleChunk;
|
|
22
|
+
/**
|
|
23
|
+
* Handle a complete message from rslint
|
|
24
|
+
*/
|
|
25
|
+
private handleMessage;
|
|
26
|
+
/**
|
|
27
|
+
* Terminate the rslint process
|
|
28
|
+
*/
|
|
29
|
+
terminate(): void;
|
|
30
|
+
}
|
|
31
|
+
//# sourceMappingURL=node.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"node.d.ts","sourceRoot":"","sources":["../src/node.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EACV,sBAAsB,EAKtB,aAAa,EAGd,MAAM,YAAY,CAAC;AAEpB;;GAEG;AACH,qBAAa,iBAAkB,YAAW,sBAAsB;IAC9D,OAAO,CAAC,aAAa,CAAS;IAC9B,OAAO,CAAC,eAAe,CAA8B;IACrD,OAAO,CAAC,UAAU,CAAS;IAC3B,OAAO,CAAC,OAAO,CAAe;IAC9B,OAAO,CAAC,MAAM,CAAW;IACzB,OAAO,CAAC,SAAS,CAAS;IAC1B,OAAO,CAAC,YAAY,CAAgB;IAEpC,YAAY,OAAO,GAAE,aAAkB,EAqBtC;IAED;;OAEG;IACG,WAAW,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,GAAG,GAAG,OAAO,CAAC,GAAG,CAAC,CAiBvD;IAED;;OAEG;IACH,OAAO,CAAC,WAAW;IAyCnB;;OAEG;IACH,OAAO,CAAC,aAAa;IAcrB;;OAEG;IACH,SAAS,IAAI,IAAI,CAKhB;CACF"}
|
package/dist/node.js
ADDED
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import { spawn } from 'child_process';
|
|
2
|
+
import path from 'path';
|
|
3
|
+
/**
|
|
4
|
+
* Node.js implementation of RslintService using child processes
|
|
5
|
+
*/
|
|
6
|
+
export class NodeRslintService {
|
|
7
|
+
nextMessageId;
|
|
8
|
+
pendingMessages;
|
|
9
|
+
rslintPath;
|
|
10
|
+
process;
|
|
11
|
+
chunks;
|
|
12
|
+
chunkSize;
|
|
13
|
+
expectedSize;
|
|
14
|
+
constructor(options = {}) {
|
|
15
|
+
this.nextMessageId = 1;
|
|
16
|
+
this.pendingMessages = new Map();
|
|
17
|
+
this.rslintPath =
|
|
18
|
+
options.rslintPath || path.join(import.meta.dirname, '../bin/rslint');
|
|
19
|
+
this.process = spawn(this.rslintPath, ['--api'], {
|
|
20
|
+
stdio: ['pipe', 'pipe', 'inherit'],
|
|
21
|
+
cwd: options.workingDirectory || process.cwd(),
|
|
22
|
+
env: {
|
|
23
|
+
...process.env,
|
|
24
|
+
},
|
|
25
|
+
});
|
|
26
|
+
// Set up binary message reading
|
|
27
|
+
this.process.stdout.on('data', data => {
|
|
28
|
+
this.handleChunk(data);
|
|
29
|
+
});
|
|
30
|
+
this.chunks = [];
|
|
31
|
+
this.chunkSize = 0;
|
|
32
|
+
this.expectedSize = null;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Send a message to the rslint process
|
|
36
|
+
*/
|
|
37
|
+
async sendMessage(kind, data) {
|
|
38
|
+
return new Promise((resolve, reject) => {
|
|
39
|
+
const id = this.nextMessageId++;
|
|
40
|
+
const message = { id, kind, data };
|
|
41
|
+
// Register promise callbacks
|
|
42
|
+
this.pendingMessages.set(id, { resolve, reject });
|
|
43
|
+
// Write message length as 4 bytes in little endian
|
|
44
|
+
const json = JSON.stringify(message);
|
|
45
|
+
const jsonBuffer = Buffer.from(json, 'utf8');
|
|
46
|
+
const length = Buffer.alloc(4);
|
|
47
|
+
length.writeUInt32LE(jsonBuffer.length, 0);
|
|
48
|
+
// Send message
|
|
49
|
+
this.process.stdin.write(Buffer.concat([length, jsonBuffer]));
|
|
50
|
+
});
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* Handle incoming binary data chunks
|
|
54
|
+
*/
|
|
55
|
+
handleChunk(chunk) {
|
|
56
|
+
this.chunks.push(chunk);
|
|
57
|
+
this.chunkSize += chunk.length;
|
|
58
|
+
// Process complete messages
|
|
59
|
+
while (true) {
|
|
60
|
+
// Read message length if we don't have it yet
|
|
61
|
+
if (this.expectedSize === null) {
|
|
62
|
+
if (this.chunkSize < 4)
|
|
63
|
+
return;
|
|
64
|
+
// Combine chunks to read the message length
|
|
65
|
+
const combined = Buffer.concat(this.chunks);
|
|
66
|
+
this.expectedSize = combined.readUInt32LE(0);
|
|
67
|
+
// Remove length bytes from buffer
|
|
68
|
+
this.chunks = [combined.slice(4)];
|
|
69
|
+
this.chunkSize -= 4;
|
|
70
|
+
}
|
|
71
|
+
// Check if we have the full message
|
|
72
|
+
if (this.chunkSize < this.expectedSize)
|
|
73
|
+
return;
|
|
74
|
+
// Read the message content
|
|
75
|
+
const combined = Buffer.concat(this.chunks);
|
|
76
|
+
const message = combined.slice(0, this.expectedSize).toString('utf8');
|
|
77
|
+
// Handle the message
|
|
78
|
+
try {
|
|
79
|
+
const parsed = JSON.parse(message);
|
|
80
|
+
this.handleMessage(parsed);
|
|
81
|
+
}
|
|
82
|
+
catch (err) {
|
|
83
|
+
console.error('Error parsing message:', err);
|
|
84
|
+
}
|
|
85
|
+
// Reset for next message
|
|
86
|
+
this.chunks = [combined.slice(this.expectedSize)];
|
|
87
|
+
this.chunkSize = this.chunks[0].length;
|
|
88
|
+
this.expectedSize = null;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
/**
|
|
92
|
+
* Handle a complete message from rslint
|
|
93
|
+
*/
|
|
94
|
+
handleMessage(message) {
|
|
95
|
+
const { id, kind, data } = message;
|
|
96
|
+
const pending = this.pendingMessages.get(id);
|
|
97
|
+
if (!pending)
|
|
98
|
+
return;
|
|
99
|
+
this.pendingMessages.delete(id);
|
|
100
|
+
if (kind === 'error') {
|
|
101
|
+
pending.reject(new Error(data.message));
|
|
102
|
+
}
|
|
103
|
+
else {
|
|
104
|
+
pending.resolve(data);
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* Terminate the rslint process
|
|
109
|
+
*/
|
|
110
|
+
terminate() {
|
|
111
|
+
if (this.process && !this.process.killed) {
|
|
112
|
+
this.process.stdin.end();
|
|
113
|
+
this.process.kill();
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import type { RslintServiceInterface as RslintServiceBackend, LintOptions, LintResponse, ApplyFixesRequest, ApplyFixesResponse, GetAstInfoRequest, GetAstInfoResponse } from './types.js';
|
|
2
|
+
/**
|
|
3
|
+
* Main RslintService class that automatically uses the appropriate implementation
|
|
4
|
+
*/
|
|
5
|
+
export declare class RSLintService {
|
|
6
|
+
private service;
|
|
7
|
+
constructor(service: RslintServiceBackend);
|
|
8
|
+
/**
|
|
9
|
+
* Run the linter on specified files
|
|
10
|
+
*/
|
|
11
|
+
lint(options?: LintOptions): Promise<LintResponse>;
|
|
12
|
+
/**
|
|
13
|
+
* Apply fixes to a file based on diagnostics
|
|
14
|
+
*/
|
|
15
|
+
applyFixes(options: ApplyFixesRequest): Promise<ApplyFixesResponse>;
|
|
16
|
+
/**
|
|
17
|
+
* Get detailed AST information at a specific position
|
|
18
|
+
* Returns Node, Type, Symbol, Signature, and Flow information
|
|
19
|
+
*/
|
|
20
|
+
getAstInfo(options: GetAstInfoRequest): Promise<GetAstInfoResponse>;
|
|
21
|
+
/**
|
|
22
|
+
* Close the service
|
|
23
|
+
*/
|
|
24
|
+
close(): Promise<void>;
|
|
25
|
+
}
|
|
26
|
+
// Re-export types for convenience
|
|
27
|
+
export type { Diagnostic, LintOptions, LintResponse, ApplyFixesRequest, ApplyFixesResponse, LanguageOptions, ParserOptions, RSlintOptions, RslintServiceInterface,
|
|
28
|
+
// AST Info types
|
|
29
|
+
GetAstInfoRequest, GetAstInfoResponse, NodeInfo, TypeInfo, SymbolInfo, SignatureInfo, FlowInfo, ParameterInfo, TypeParamInfo, IndexInfo, TypePredicateInfo, } from './types.js';
|
|
30
|
+
//# sourceMappingURL=service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"service.d.ts","sourceRoot":"","sources":["../src/service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,sBAAsB,IAAI,oBAAoB,EAC9C,WAAW,EACX,YAAY,EACZ,iBAAiB,EACjB,kBAAkB,EAClB,iBAAiB,EACjB,kBAAkB,EACnB,MAAM,YAAY,CAAC;AAEpB;;GAEG;AACH,qBAAa,aAAa;IACxB,OAAO,CAAC,OAAO,CAAuB;IAEtC,YAAY,OAAO,EAAE,oBAAoB,EAExC;IAED;;OAEG;IACG,IAAI,CAAC,OAAO,GAAE,WAAgB,GAAG,OAAO,CAAC,YAAY,CAAC,CAyB3D;IAED;;OAEG;IACG,UAAU,CAAC,OAAO,EAAE,iBAAiB,GAAG,OAAO,CAAC,kBAAkB,CAAC,CAWxE;IAED;;;OAGG;IACG,UAAU,CAAC,OAAO,EAAE,iBAAiB,GAAG,OAAO,CAAC,kBAAkB,CAAC,CAwBxE;IAED;;OAEG;IACG,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC,CAO3B;CACF;AAED,kCAAkC;AAClC,YAAY,EACV,UAAU,EACV,WAAW,EACX,YAAY,EACZ,iBAAiB,EACjB,kBAAkB,EAClB,eAAe,EACf,aAAa,EACb,aAAa,EACb,sBAAsB;AACtB,iBAAiB;AACjB,iBAAiB,EACjB,kBAAkB,EAClB,QAAQ,EACR,QAAQ,EACR,UAAU,EACV,aAAa,EACb,QAAQ,EACR,aAAa,EACb,aAAa,EACb,SAAS,EACT,iBAAiB,GAClB,MAAM,YAAY,CAAC"}
|
package/dist/service.js
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Main RslintService class that automatically uses the appropriate implementation
|
|
3
|
+
*/
|
|
4
|
+
export class RSLintService {
|
|
5
|
+
service;
|
|
6
|
+
constructor(service) {
|
|
7
|
+
this.service = service;
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Run the linter on specified files
|
|
11
|
+
*/
|
|
12
|
+
async lint(options = {}) {
|
|
13
|
+
const { files, config, workingDirectory, ruleOptions, fileContents, languageOptions, includeEncodedSourceFiles, } = options;
|
|
14
|
+
// Send handshake
|
|
15
|
+
await this.service.sendMessage('handshake', { version: '1.0.0' });
|
|
16
|
+
// Send lint request
|
|
17
|
+
return this.service.sendMessage('lint', {
|
|
18
|
+
files,
|
|
19
|
+
config,
|
|
20
|
+
workingDirectory,
|
|
21
|
+
ruleOptions,
|
|
22
|
+
fileContents,
|
|
23
|
+
languageOptions,
|
|
24
|
+
includeEncodedSourceFiles,
|
|
25
|
+
format: 'jsonline',
|
|
26
|
+
});
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Apply fixes to a file based on diagnostics
|
|
30
|
+
*/
|
|
31
|
+
async applyFixes(options) {
|
|
32
|
+
const { fileContent, diagnostics } = options;
|
|
33
|
+
// Send handshake
|
|
34
|
+
await this.service.sendMessage('handshake', { version: '1.0.0' });
|
|
35
|
+
// Send apply fixes request
|
|
36
|
+
return this.service.sendMessage('applyFixes', {
|
|
37
|
+
fileContent,
|
|
38
|
+
diagnostics,
|
|
39
|
+
});
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* Get detailed AST information at a specific position
|
|
43
|
+
* Returns Node, Type, Symbol, Signature, and Flow information
|
|
44
|
+
*/
|
|
45
|
+
async getAstInfo(options) {
|
|
46
|
+
const { fileContent, position, end, kind, depth = 2, fileName, compilerOptions, } = options;
|
|
47
|
+
// Send handshake
|
|
48
|
+
await this.service.sendMessage('handshake', { version: '1.0.0' });
|
|
49
|
+
// Send getAstInfo request
|
|
50
|
+
return this.service.sendMessage('getAstInfo', {
|
|
51
|
+
fileContent,
|
|
52
|
+
position,
|
|
53
|
+
end,
|
|
54
|
+
kind,
|
|
55
|
+
depth,
|
|
56
|
+
fileName,
|
|
57
|
+
compilerOptions,
|
|
58
|
+
});
|
|
59
|
+
}
|
|
60
|
+
/**
|
|
61
|
+
* Close the service
|
|
62
|
+
*/
|
|
63
|
+
async close() {
|
|
64
|
+
return new Promise(resolve => {
|
|
65
|
+
this.service.sendMessage('exit', {}).finally(() => {
|
|
66
|
+
this.service.terminate();
|
|
67
|
+
resolve();
|
|
68
|
+
});
|
|
69
|
+
});
|
|
70
|
+
}
|
|
71
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":"7.0.0-dev.20250904.1","root":[[61,62],[65,76]],"fileNames":["lib.es5.d.ts","lib.es2015.d.ts","lib.es2016.d.ts","lib.es2017.d.ts","lib.es2018.d.ts","lib.es2019.d.ts","lib.es2020.d.ts","lib.es2021.d.ts","lib.es2022.d.ts","lib.webworker.d.ts","lib.es2015.core.d.ts","lib.es2015.collection.d.ts","lib.es2015.generator.d.ts","lib.es2015.iterable.d.ts","lib.es2015.promise.d.ts","lib.es2015.proxy.d.ts","lib.es2015.reflect.d.ts","lib.es2015.symbol.d.ts","lib.es2015.symbol.wellknown.d.ts","lib.es2016.array.include.d.ts","lib.es2016.intl.d.ts","lib.es2017.arraybuffer.d.ts","lib.es2017.date.d.ts","lib.es2017.object.d.ts","lib.es2017.sharedmemory.d.ts","lib.es2017.string.d.ts","lib.es2017.intl.d.ts","lib.es2017.typedarrays.d.ts","lib.es2018.asyncgenerator.d.ts","lib.es2018.asynciterable.d.ts","lib.es2018.intl.d.ts","lib.es2018.promise.d.ts","lib.es2018.regexp.d.ts","lib.es2019.array.d.ts","lib.es2019.object.d.ts","lib.es2019.string.d.ts","lib.es2019.symbol.d.ts","lib.es2019.intl.d.ts","lib.es2020.bigint.d.ts","lib.es2020.date.d.ts","lib.es2020.promise.d.ts","lib.es2020.sharedmemory.d.ts","lib.es2020.string.d.ts","lib.es2020.symbol.wellknown.d.ts","lib.es2020.intl.d.ts","lib.es2020.number.d.ts","lib.es2021.promise.d.ts","lib.es2021.string.d.ts","lib.es2021.weakref.d.ts","lib.es2021.intl.d.ts","lib.es2022.array.d.ts","lib.es2022.error.d.ts","lib.es2022.intl.d.ts","lib.es2022.object.d.ts","lib.es2022.string.d.ts","lib.es2022.regexp.d.ts","lib.esnext.disposable.d.ts","lib.esnext.float16.d.ts","lib.decorators.d.ts","lib.decorators.legacy.d.ts","../src/types.ts","../src/browser.ts","../../../node_modules/.pnpm/jiti@2.6.1/node_modules/jiti/lib/types.d.ts","../../../node_modules/.pnpm/jiti@2.6.1/node_modules/jiti/lib/jiti.d.mts","../src/config-loader.ts","../src/cli.ts","../src/define-config.ts","../src/node.ts","../src/service.ts","../src/configs/typescript.ts","../src/configs/javascript.ts","../src/configs/react.ts","../src/configs/import.ts","../src/configs/index.ts","../src/index.ts","../src/worker.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/utility.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/h2c-client.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/@types+react@19.1.9/node_modules/@types/react/global.d.ts","../../../node_modules/.pnpm/csstype@3.1.3/node_modules/csstype/index.d.ts","../../../node_modules/.pnpm/@types+react@19.1.9/node_modules/@types/react/index.d.ts"],"fileInfos":[{"version":"58b8dc4da260b41be8de1be2d876a1e6","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"24660545bd04f64286946ca58f9461fc","impliedNodeFormat":99},{"version":"006807822602069b83b496ad7e25e6ca","impliedNodeFormat":99},{"version":"4d9b146f28d6be2c3542b08b595febfe","impliedNodeFormat":99},{"version":"455ea9b314b4d327c535fb65bd954959","impliedNodeFormat":99},{"version":"c079fccc6ede08aa4f8ca702c3ba328e","impliedNodeFormat":99},{"version":"c349310240662575d10e855fb8cff0b9","impliedNodeFormat":99},{"version":"4ccba7d48aa8b5a54b56f9a48b076496","impliedNodeFormat":99},{"version":"92ef9b8df31d3a08512928a3066d8fa9","impliedNodeFormat":99},{"version":"73d4a4cb6c1409e4d75f0d308704b7f8","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"751a26973b059fed1d0ecc4b02a0aa43","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"be28f9bf546cb528601aaa04d7034fc8","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"3bc4e9a53ee556f3dc15abc1179278dd","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"2c63fa39e2cdd849306f21679fdac8b1","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"e1a9f024b1a69565194afcdb4b57ef1d","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"9fa1fffd5b2b67d8d8c33e295cb91a9f","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"4d8ab857b044eaa0661bd0aebebc038b","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"748df784ad0b12a20c5f5ce011418c3c","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"62abf648b001aa05585b5d0e71cd96d7","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"d901677b09e934598f913e2c05f827b0","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"ab7a40e3c7854c54c6f329376cf3f9b6","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"00ece0060faf280c5873f3cfe62d7d19","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"cf5a418e3fbdb27a784c5fc37be6797a","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"a73a6f599fda19ffee929d4386bab691","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"c043f4221acd9d8470d6bc087cd455ba","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"fbae9331a88fa1a8a336fe90253cbbc7","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"d4124f01474cfa693099d8be321979e4","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"e3e80cf65ee855fd4a5813ea19701f93","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"cd8650f4caf8166f19fd93217907da21","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"c39604220a24016cb90fe3094a6b4b56","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"2652c52b1c748791681ca0a4d751b09b","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"9540816cf2a3418a9254e43f1055e767","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"f9616d828e6afe0f8146e9ac3b33fa59","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"4f00a6f131995907fe9b0faf4dbabc18","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"47f85dd672027fda65064cbfee6b2d71","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"8adddec358b9acfa3d65fd4d2013ac84","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"8170fe225cf3b8b74c06f1fe8913924f","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"c9dbd0e301b2bd8fc6d5dcb75dc61ec4","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"3a64170086e7ddb980f07478f95f7c49","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"a804e69080dc542b8de4079fdde7ebef","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"783d6e41b4c30cc983d131b2f413044a","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"11b11ae792c173835b03d064a0853462","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"4cdc220ae24b55dcc69d30252c36ce9d","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"36fd93eca51199e9dfee76d7dbbf2719","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"7fc46463d5c6871146e3aac105f21a2d","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"21ed16210f33f30f1e2df6dd5bc584d9","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"b2d1055a33f1612669aed4b1c06ab438","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"6779bb060769fcc1b3063d7d6dacca83","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"5de91aed11cf11bbf79c2323600f2a28","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"2843d76b135201d1ba75d56f45238760","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"98afe632d712655c371691bc02dd15f8","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"e33a3b1212a9f61f3d7229e068573681","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"79a0167d7b98b654dbb97ec62ff1fca9","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"045bc80bcb8ba75cf56e2c9af4636a06","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"5c327c3a580ef35777e7f2b97b6b23e4","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"9965653fed0cc40aff9f23e6250e449a","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"6ff13a1f4d84ba0dfb73813250150f0a","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"5562f148cf1dda444e2284f3a3d39eeb","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"45c91c5f844a9ee1df11d1b71c484b0e","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"39e009135c77d60baa790854b51d2195","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"7d376e054f2b7d36aa0f0917c4214bb6","signature":"31a6509be21121ef7ed470a1f1b9d7ca","impliedNodeFormat":99},{"version":"cb992ecb4223d49eea754f36b58479c8","signature":"6ed78de782fc6139dcd62c85e4b65b70","impliedNodeFormat":99},{"version":"2cb26cf8b77feeaaaea39a5ded665113","impliedNodeFormat":99},{"version":"d12f934b02b80930fae26957ad4738b6","impliedNodeFormat":99},{"version":"fd543d1df7e954b28cdc6dacf9b60c7d","signature":"ffeb7d87c615588db9bdc40cb0df8161","impliedNodeFormat":99},{"version":"a5c8a301715e40d87a4418763d69b0c9","signature":"cd6ccff01ba3358fea03040b219d550b","impliedNodeFormat":99},{"version":"27f095ab5b3c7f289f4fcb5fed34e8ba","signature":"f59be21f04f1a5f66cee16a39c6a99a9","impliedNodeFormat":99},{"version":"9ae8874a8d5279fb8753aa278b0cb00e","signature":"394df24b68eef539282144022f1f8183","impliedNodeFormat":99},{"version":"f5e1e8cf6c6a99d0ea73d509e5f3b350","signature":"01d98ec74c3936c42c8a4e436060fa97","impliedNodeFormat":99},{"version":"43bb2d1d12719fbf01afdf13263ecaba","signature":"e9f70542c87d6dcbb341b6209f1e3ca1","impliedNodeFormat":99},{"version":"0549a1ea939157cfd6e3306cb8fd4928","signature":"68a183df97d577eacc25a14ad92e60fb","impliedNodeFormat":99},{"version":"e3ce4544365f52f37af0f2756a37fefc","signature":"ef59ad486c11d739f17e1e1fa52d41fb","impliedNodeFormat":99},{"version":"f19aa610319291e92f1e009825f85399","signature":"3bc9387c52d40323151c43848934a5d8","impliedNodeFormat":99},{"version":"36fd701114b613dbdfef49228ab19aa8","signature":"e20190f8541ae0b7321d36b9f7e79fae","impliedNodeFormat":99},{"version":"a2124d5bd7dd6f5248cb660ae17eb36f","signature":"629f6aafff87d0ebb477f8c50e199a68","impliedNodeFormat":99},{"version":"2b21b89eb43988d7b83a9a961c1a5a70","signature":"abe7d9981d6018efb6b2b794f40a1607","impliedNodeFormat":99},{"version":"2514e9a2749c0fc18d2f478e9e1e641e","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"f652e5dd19482f44f9387406574bdd0a","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"ecdcb80604ca736ed275e4330a3acd50","affectsGlobalScope":true,"impliedNodeFormat":1},"8e91e7228778516936913f666d057c19","49133c0dfbc32ab95668c3443dea49e5","85c2cf74d24d4069fac4686501a2d7e3","83f416ded62bb31c035580c3b5a8d334","88a476e1b17b513ec388c48b5303e010","60c67c092ae78d2e7858ca0a88f54659","9508c917bd7e458745e222a82dd24ef0","51ce48cc1d85b4b7ee13109b40c46114","a86a959071e855285f470f2e08ec2dde","fc4e8bd86f6f1ae68685f44445eff81d","705645fe223430c696f47b708d592ca8","28d57c837c94adb42add03d499793cab","8c01a9bbae8449be21b3e018d59a74ac","992c18b758ab50d188485348a313e8fd","f7b846e3f5d3a1678a27a534636e598d","16f740a706028e841b09fb8b1aa8faaf","bf260ba87c1928b60b6117029e99d559","07badf3415d0d61eb51e65c2c1d249ab","0aecf0586f33c1d2ea2e05c358afca16","c2364011a80b6a9e3cc0e77895bad577","f018ff75d70f3ff81fd5023da7d4ad2e","72524fc4b9ab31a174530a065dff4b92","ccfd1f92db55955e84384676feef9ffb","69c7bb9c3befe9ae37eed0e6a6310fee","31341fcd52f68f78c0c340480c086c98","2f4f6e701620e6564bb5c438f964578e","064761901f4de9ed88371873855b170d","b438b08b2f0ed94a95a75c8990d9021b","771a77c9bec862600c95f7a563871b5e","c665284a9cb3dd886b14663cd04742e0","4b7366a70853ae20881a6b4b893d93d3","0468c0ccd0ec7770b76481b165564d62","188234d616a4f50ed9b14c8f84a39f33","4c116bcf0a47ea8fbf4072f380925fa7","3070cd51aa46e2f00275e034f80f6b59","865aea1c3209e31b076cb6fe780e769e","63eec4dc4789376da114ec591bd56923","b744265d8ad12b7d4d5c5dc35d18d44e","eff32168b8348b822afeed9cbf61afa7","26d101efae9b618449dd3da6aebd45d4",{"version":"568750d32ee42158f0ac66c5672ed609","affectsGlobalScope":true,"impliedNodeFormat":1},"910ef6148943e1ad967fc9f4d0ef5ca0","7deced3ef46e082f97d49bb71622526a","f81aa09811fa65ac6f354ab0018d3c38",{"version":"cfc105b6759d0b72e9ac9a0abe059527","affectsGlobalScope":true,"impliedNodeFormat":1},"4106e18ac4fb5b98fba76cdff9204262","1c1f3f0469723ebc30f86bfe21521c8d",{"version":"a3a2391a0ca69d8577a52d3884d90530","affectsGlobalScope":true,"impliedNodeFormat":1},"b2b472cd0bf0f8d5f022e00ca1c401f4",{"version":"afed1ada3f247602f1f29e5762a10e0a","affectsGlobalScope":true,"impliedNodeFormat":1},"bd1865e459f8177364554d1f3176f5ed","1c66af6e8e63eae9cce90083d361d33f","e36efb6c9794e0b9f8e23392ecccd577","fbe31979333ec391d8b59e8f42236e8e","6f97553fd1690f568365155d4c51a3b5",{"version":"cb0b77b9a8e6edb694cd6c637486ffef","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"9edcdd7198740984c99907c129978973","affectsGlobalScope":true,"impliedNodeFormat":1},"d717441a3debece5417ad2e73aed07cc","a5dbfd17f706283f910baa96366eb920","4be5f10797f9ebb28f7721cfd8e8da34","912f20b1d68b38b9acf57e0849ec5469","629beb9ea955f1997cf64adf439c6133","32683d58e587fd4c25b8bc30682f6241",{"version":"8e6dc5ac3fcff4495b0625c591514b1e","affectsGlobalScope":true,"impliedNodeFormat":1},"9ea7cd0d0018e0421207b0970b559b8f","873f0ec733a52118af83f3a1239dfd7f","bf912705027b3eabad67f9d8ce7d89be",{"version":"c9036cfa0a4d2d7f1ae99178866fdb70","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"bc34984f238f2130864bd1049109f77b","affectsGlobalScope":true,"impliedNodeFormat":1},"6b26581aa2587701d570206a0db8c9ee","88a29e2aac8082c0910733950159e1ca","609d3ac6ba921e6e83c5da182c204fb8","ce949e2c34044d515bf85beb4192d138","a1238e436cba0b0db07f1555ef0df5fa","99a1d15196a239e65bf993ce6e128427","8dee16e0f918e98afc0fec4f8a15e189","3efc335bc8a8f6887d58767e1662717a","c8206d568b54e5ea06131963eecd576a","141101b35aa85ab5ae3d1836f602d9c2",{"version":"2ed70491374f27b7d4ff5db624057a07","affectsGlobalScope":true,"impliedNodeFormat":1},"743c944bc937ca1c8bf2b1a8ba09970d","8f029b5de1a7b5a20352d323c965cd81",{"version":"51c771bc7fc6bbfbaffba6c393b8fc14","affectsGlobalScope":true,"impliedNodeFormat":1},"4bc8f13c472858fb74f77388c0c5d885","36f02bde868b36543678fc59bf849ea7","c72d2516d1e8910caca33c4dff75fcd4","f0231f36cb7117fbe9271ff19ef0f5f4",{"version":"9d3c373f38f202a3a5cf984fa41309ee","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"a4f60f1f5d6d26c39233e18e7e4c40e2","affectsGlobalScope":true,"impliedNodeFormat":1},"ae6587532652a398ed932c2658ac3d4e","8c173387961bce1166d3e05b129fb108","010116401a82e1f466c580307f045f71",{"version":"3a4d7c89c2f2f9af5b2ea4b28ed492fc","affectsGlobalScope":true,"impliedNodeFormat":1},"422542e3616e997a247dfae35b486617","92ac071eabd0a4c11d987698355e5dfe",{"version":"755636ad6f32b63f262ec9940496a366","affectsGlobalScope":true,"impliedNodeFormat":1},"fdca13c9e1b0225fe2ea7411fc134684","fb08c88c0d1f2cb7075a104a660c7933"],"fileIdsList":[[79,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,119,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,119,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[77,78,79,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,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,175,176],[63,79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,89,93,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,89,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,84,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,86,89,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174],[79,84,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174],[79,81,82,83,85,88,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,89,97,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,82,87,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,89,113,114,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,82,85,89,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174],[79,81,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,84,85,86,87,88,89,90,91,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,114,115,116,117,118,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,89,106,109,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,89,97,98,99,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,87,89,98,100,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,88,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,82,84,89,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,89,93,98,100,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,93,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,87,89,92,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,82,86,89,97,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,89,106,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[79,84,89,113,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174],[61,79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[65,79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[64,79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[67,79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[67,70,71,72,73,79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[61,67,68,69,74,79,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173]],"options":{"allowJs":false,"allowSyntheticDefaultImports":true,"allowImportingTsExtensions":true,"composite":true,"emitDeclarationOnly":false,"emitDecoratorMetadata":false,"declaration":true,"declarationMap":true,"esModuleInterop":true,"experimentalDecorators":false,"importHelpers":false,"module":199,"noImplicitReturns":true,"noEmitOnError":true,"noImplicitOverride":true,"outDir":"./","removeComments":false,"rewriteRelativeImportExtensions":true,"rootDir":"../src","skipLibCheck":true,"strict":true,"skipDefaultLibCheck":false,"sourceMap":false,"target":9,"tsBuildInfoFile":"./tsconfig.build.tsbuildinfo","verbatimModuleSyntax":false},"referencedMap":[[121,1],[122,2],[123,3],[79,4],[124,5],[125,6],[126,7],[77,8],[127,9],[128,10],[129,11],[130,12],[131,13],[132,14],[133,15],[135,8],[134,16],[136,17],[137,18],[138,19],[120,20],[78,8],[139,21],[140,22],[141,23],[174,24],[142,25],[143,26],[144,27],[145,28],[146,29],[147,30],[148,31],[149,32],[150,33],[151,34],[152,35],[153,36],[154,37],[155,38],[156,39],[158,40],[157,41],[159,42],[160,43],[161,44],[162,45],[163,46],[164,47],[165,48],[166,49],[167,50],[168,51],[169,52],[170,53],[171,54],[172,55],[173,56],[175,8],[177,57],[59,8],[60,8],[12,8],[11,8],[2,8],[13,8],[14,8],[15,8],[16,8],[17,8],[18,8],[19,8],[20,8],[3,8],[21,8],[22,8],[4,8],[23,8],[27,8],[24,8],[25,8],[26,8],[28,8],[29,8],[30,8],[5,8],[31,8],[32,8],[33,8],[34,8],[6,8],[38,8],[35,8],[36,8],[37,8],[39,8],[7,8],[40,8],[45,8],[46,8],[41,8],[42,8],[43,8],[44,8],[8,8],[50,8],[47,8],[48,8],[49,8],[51,8],[9,8],[52,8],[53,8],[54,8],[56,8],[55,8],[1,8],[57,8],[58,8],[10,8],[80,8],[176,8],[64,58],[63,8],[97,59],[108,60],[95,59],[109,8],[118,61],[87,62],[86,8],[117,63],[112,64],[116,62],[89,65],[105,66],[88,67],[115,68],[84,69],[85,64],[90,60],[91,8],[96,62],[94,60],[82,70],[119,71],[110,72],[100,73],[99,60],[101,74],[103,75],[98,76],[102,77],[113,63],[92,78],[93,79],[104,80],[83,8],[107,81],[106,60],[111,8],[81,8],[114,82],[62,83],[66,84],[65,85],[73,86],[74,87],[71,86],[72,86],[70,86],[67,8],[75,88],[68,83],[69,83],[61,8],[76,8]],"latestChangedDtsFile":"./worker.d.ts"}
|