@drskillissue/ganko 0.3.1 → 0.3.3
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/{chunk-TNKZGWOR.js → chunk-4W4KAPRH.js} +5 -5
- package/dist/chunk-4W4KAPRH.js.map +1 -0
- package/dist/{chunk-AXFVBCJD.js → chunk-D2TKH7AJ.js} +1956 -1734
- package/dist/chunk-D2TKH7AJ.js.map +1 -0
- package/dist/eslint-plugin.cjs +1913 -1720
- package/dist/eslint-plugin.cjs.map +1 -1
- package/dist/eslint-plugin.js +5 -5
- package/dist/eslint-plugin.js.map +1 -1
- package/dist/index.cjs +2345 -2148
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +173 -9
- package/dist/index.d.ts +173 -9
- package/dist/index.js +201 -215
- package/dist/index.js.map +1 -1
- package/dist/rules-manifest-BvNUyXdr.d.cts +38 -0
- package/dist/rules-manifest-BvNUyXdr.d.ts +38 -0
- package/dist/rules-manifest.cjs +4 -4
- package/dist/rules-manifest.cjs.map +1 -1
- package/dist/rules-manifest.d.cts +1 -33
- package/dist/rules-manifest.d.ts +1 -33
- package/dist/rules-manifest.js +1 -2
- package/package.json +5 -4
- package/dist/chunk-AXFVBCJD.js.map +0 -1
- package/dist/chunk-EGRHWZRV.js +0 -1
- package/dist/chunk-EGRHWZRV.js.map +0 -1
- package/dist/chunk-TNKZGWOR.js.map +0 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,7 +1,168 @@
|
|
|
1
1
|
import ts from 'typescript';
|
|
2
|
-
import {
|
|
2
|
+
import { R as RuleOverrides } from './rules-manifest-BvNUyXdr.cjs';
|
|
3
|
+
export { a as RULES, b as RULES_BY_CATEGORY, c as RuleEntry, g as getRule } from './rules-manifest-BvNUyXdr.cjs';
|
|
3
4
|
import { Declaration, AtRule, Root, Rule } from 'postcss';
|
|
4
|
-
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Resolved project root — a nominal wrapper that cannot be constructed
|
|
8
|
+
* from a raw string without going through a factory function.
|
|
9
|
+
*
|
|
10
|
+
* The `path` field is the canonical (realpath-resolved, absolute) directory.
|
|
11
|
+
* Use `.path` wherever a string is needed. The wrapper exists so that
|
|
12
|
+
* "project root" is a distinct type from "arbitrary string" in every
|
|
13
|
+
* function signature — you cannot accidentally pass a file path or URI.
|
|
14
|
+
*/
|
|
15
|
+
declare class ProjectRoot {
|
|
16
|
+
readonly path: string;
|
|
17
|
+
/** @param canonical - Canonical absolute path */
|
|
18
|
+
private constructor();
|
|
19
|
+
/** String coercion returns the canonical path. */
|
|
20
|
+
toString(): string;
|
|
21
|
+
/** JSON serialization returns the canonical path. */
|
|
22
|
+
toJSON(): string;
|
|
23
|
+
/** @internal Factory — only used by the module-level factory functions below. */
|
|
24
|
+
static _create(canonical: string): ProjectRoot;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
/** Canonical list of log level names, most verbose to least verbose. */
|
|
28
|
+
declare const LOG_LEVELS: readonly ["trace", "debug", "info", "warning", "error", "critical", "off"];
|
|
29
|
+
/** String log level name — used for configuration, parsing, and display. */
|
|
30
|
+
type LogLevel = (typeof LOG_LEVELS)[number];
|
|
31
|
+
/**
|
|
32
|
+
* Numeric log level constants for hot-path level checks.
|
|
33
|
+
*
|
|
34
|
+
* Lower numbers are more verbose. Use with `isLevelEnabled`:
|
|
35
|
+
*
|
|
36
|
+
* ```ts
|
|
37
|
+
* if (log.isLevelEnabled(Level.Debug)) log.debug(`rebuilt ${count} graphs`);
|
|
38
|
+
* ```
|
|
39
|
+
*/
|
|
40
|
+
declare const Level: {
|
|
41
|
+
readonly Trace: 0;
|
|
42
|
+
readonly Debug: 1;
|
|
43
|
+
readonly Info: 2;
|
|
44
|
+
readonly Warning: 3;
|
|
45
|
+
readonly Error: 4;
|
|
46
|
+
readonly Critical: 5;
|
|
47
|
+
readonly Off: 6;
|
|
48
|
+
};
|
|
49
|
+
/** Numeric log level value (0–6). */
|
|
50
|
+
type LevelValue = (typeof Level)[keyof typeof Level];
|
|
51
|
+
/**
|
|
52
|
+
* Logger — shared logging interface for all packages.
|
|
53
|
+
*
|
|
54
|
+
* Levels match VS Code's LogLevel enum: Trace, Debug, Info, Warning, Error, Critical, Off.
|
|
55
|
+
*
|
|
56
|
+
* Backends are environment-specific (LSP connection, CLI stderr, noop for tests).
|
|
57
|
+
* The interface lives here so ganko and @drskillissue/ganko-shared consumers can log
|
|
58
|
+
* without depending on ganko.
|
|
59
|
+
*
|
|
60
|
+
* Use `isLevelEnabled` to guard expensive log argument computation:
|
|
61
|
+
*
|
|
62
|
+
* ```ts
|
|
63
|
+
* if (log.isLevelEnabled(Level.Debug)) log.debug(`rebuilt ${count} graphs in ${elapsed}ms`);
|
|
64
|
+
* ```
|
|
65
|
+
*
|
|
66
|
+
* This checks against the actual log level threshold — a single integer
|
|
67
|
+
* comparison with no lookup table. Template literals and function calls
|
|
68
|
+
* inside the guard are never evaluated when the level is disabled.
|
|
69
|
+
*/
|
|
70
|
+
interface Logger {
|
|
71
|
+
/** The active log level threshold. Messages below this level are suppressed. */
|
|
72
|
+
readonly level: LogLevel;
|
|
73
|
+
/** Check whether a specific level would produce output at the current threshold. */
|
|
74
|
+
isLevelEnabled(level: LevelValue): boolean;
|
|
75
|
+
trace(message: string): void;
|
|
76
|
+
debug(message: string): void;
|
|
77
|
+
info(message: string): void;
|
|
78
|
+
warning(message: string): void;
|
|
79
|
+
error(message: string, err?: Error): void;
|
|
80
|
+
critical(message: string, err?: Error): void;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
interface WorkspacePackage {
|
|
84
|
+
readonly path: string;
|
|
85
|
+
readonly name: string | null;
|
|
86
|
+
readonly dependencies: ReadonlySet<string>;
|
|
87
|
+
readonly packageJsonPath: string;
|
|
88
|
+
}
|
|
89
|
+
interface WorkspaceLayout {
|
|
90
|
+
readonly root: ProjectRoot;
|
|
91
|
+
readonly packages: readonly WorkspacePackage[];
|
|
92
|
+
readonly packagePaths: ReadonlySet<string>;
|
|
93
|
+
readonly allDependencyNames: ReadonlySet<string>;
|
|
94
|
+
readonly allPackageJsonPaths: readonly string[];
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* String Interning Utilities
|
|
99
|
+
*
|
|
100
|
+
* String interning stores a single copy of each unique string value
|
|
101
|
+
* and reuses that reference, reducing memory usage for frequently
|
|
102
|
+
* repeated strings.
|
|
103
|
+
*/
|
|
104
|
+
/**
|
|
105
|
+
* A string interner that stores canonical string references.
|
|
106
|
+
*
|
|
107
|
+
* When the same string value is encountered multiple times, the interner
|
|
108
|
+
* returns the same reference, enabling reference equality comparisons
|
|
109
|
+
* and reducing memory usage.
|
|
110
|
+
*
|
|
111
|
+
* @example
|
|
112
|
+
* const interner = new StringInterner();
|
|
113
|
+
* const a = interner.intern("hello");
|
|
114
|
+
* const b = interner.intern("hello");
|
|
115
|
+
* console.log(a === b); // true (same reference)
|
|
116
|
+
*/
|
|
117
|
+
declare class StringInterner {
|
|
118
|
+
private readonly table;
|
|
119
|
+
/**
|
|
120
|
+
* Intern a string, returning a canonical reference.
|
|
121
|
+
*
|
|
122
|
+
* If the string has been seen before, returns the existing reference.
|
|
123
|
+
* Otherwise, stores and returns the input string.
|
|
124
|
+
*
|
|
125
|
+
* @param s - The string to intern
|
|
126
|
+
* @returns The canonical interned string
|
|
127
|
+
*/
|
|
128
|
+
intern(s: string): string;
|
|
129
|
+
/**
|
|
130
|
+
* Check if a string has been interned.
|
|
131
|
+
*
|
|
132
|
+
* @param s - The string to check
|
|
133
|
+
* @returns True if the string is already in the intern table
|
|
134
|
+
*/
|
|
135
|
+
has(s: string): boolean;
|
|
136
|
+
/**
|
|
137
|
+
* Get the interned version of a string if it exists.
|
|
138
|
+
*
|
|
139
|
+
* @param s - The string to look up
|
|
140
|
+
* @returns The interned string or undefined
|
|
141
|
+
*/
|
|
142
|
+
get(s: string): string | undefined;
|
|
143
|
+
/**
|
|
144
|
+
* Clear all interned strings.
|
|
145
|
+
*/
|
|
146
|
+
clear(): void;
|
|
147
|
+
/**
|
|
148
|
+
* Get the number of interned strings.
|
|
149
|
+
*
|
|
150
|
+
* @returns The number of strings in the intern table
|
|
151
|
+
*/
|
|
152
|
+
get size(): number;
|
|
153
|
+
/**
|
|
154
|
+
* Pre-intern a set of strings.
|
|
155
|
+
*
|
|
156
|
+
* @param strings - Array of strings to intern
|
|
157
|
+
*/
|
|
158
|
+
internAll(strings: readonly string[]): void;
|
|
159
|
+
/**
|
|
160
|
+
* Pre-intern strings from an object's values.
|
|
161
|
+
*
|
|
162
|
+
* @param obj - Object whose string values should be interned
|
|
163
|
+
*/
|
|
164
|
+
internFromObject(obj: Record<string, string>): void;
|
|
165
|
+
}
|
|
5
166
|
|
|
6
167
|
type MessageId = string;
|
|
7
168
|
type Message = string;
|
|
@@ -159,6 +320,12 @@ declare class TypeResolver {
|
|
|
159
320
|
private typeCache;
|
|
160
321
|
private solidSymbolCache;
|
|
161
322
|
readonly logger: Logger;
|
|
323
|
+
/**
|
|
324
|
+
* Create a resolver backed by a TypeScript type checker.
|
|
325
|
+
*
|
|
326
|
+
* @param checker - Type checker used for all type queries
|
|
327
|
+
* @param logger - Optional logger for debug output
|
|
328
|
+
*/
|
|
162
329
|
constructor(checker: ts.TypeChecker, logger?: Logger);
|
|
163
330
|
private isSymbolFromSolid;
|
|
164
331
|
private isSolidSymbol;
|
|
@@ -1426,6 +1593,9 @@ interface SolidSyntaxTree {
|
|
|
1426
1593
|
readonly name: string;
|
|
1427
1594
|
}>;
|
|
1428
1595
|
readonly componentFunctions: readonly FunctionEntity[];
|
|
1596
|
+
/** Maps sub-component function scope ID → compound base's children-forwarding JSX element ID.
|
|
1597
|
+
* Built from Object.assign compound component patterns during syntax tree construction. */
|
|
1598
|
+
readonly compoundComponentParents: ReadonlyMap<number, number>;
|
|
1429
1599
|
readonly functionsWithReactiveCaptures: readonly FunctionEntity[];
|
|
1430
1600
|
readonly reactiveVariables: readonly VariableEntity$1[];
|
|
1431
1601
|
readonly propsVariables: readonly VariableEntity$1[];
|
|
@@ -1539,6 +1709,7 @@ interface SolidBuildContext {
|
|
|
1539
1709
|
name: string;
|
|
1540
1710
|
}>;
|
|
1541
1711
|
componentFunctions: FunctionEntity[];
|
|
1712
|
+
compoundComponentParents: ReadonlyMap<number, number>;
|
|
1542
1713
|
functionsWithReactiveCaptures: FunctionEntity[];
|
|
1543
1714
|
reactiveVariables: VariableEntity$1[];
|
|
1544
1715
|
propsVariables: VariableEntity$1[];
|
|
@@ -1595,13 +1766,6 @@ interface SolidBuildContext {
|
|
|
1595
1766
|
findExpressionAtOffset(offset: number): ts.Node | null;
|
|
1596
1767
|
}
|
|
1597
1768
|
|
|
1598
|
-
/**
|
|
1599
|
-
* Solid analysis entry point.
|
|
1600
|
-
*
|
|
1601
|
-
* Builds a SolidSyntaxTree from a SolidInput by running all analysis phases
|
|
1602
|
-
* against a mutable SolidBuildContext, then freezing the result.
|
|
1603
|
-
*/
|
|
1604
|
-
|
|
1605
1769
|
/**
|
|
1606
1770
|
* Build a SolidSyntaxTree from input.
|
|
1607
1771
|
*
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,168 @@
|
|
|
1
1
|
import ts from 'typescript';
|
|
2
|
-
import {
|
|
2
|
+
import { R as RuleOverrides } from './rules-manifest-BvNUyXdr.js';
|
|
3
|
+
export { a as RULES, b as RULES_BY_CATEGORY, c as RuleEntry, g as getRule } from './rules-manifest-BvNUyXdr.js';
|
|
3
4
|
import { Declaration, AtRule, Root, Rule } from 'postcss';
|
|
4
|
-
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Resolved project root — a nominal wrapper that cannot be constructed
|
|
8
|
+
* from a raw string without going through a factory function.
|
|
9
|
+
*
|
|
10
|
+
* The `path` field is the canonical (realpath-resolved, absolute) directory.
|
|
11
|
+
* Use `.path` wherever a string is needed. The wrapper exists so that
|
|
12
|
+
* "project root" is a distinct type from "arbitrary string" in every
|
|
13
|
+
* function signature — you cannot accidentally pass a file path or URI.
|
|
14
|
+
*/
|
|
15
|
+
declare class ProjectRoot {
|
|
16
|
+
readonly path: string;
|
|
17
|
+
/** @param canonical - Canonical absolute path */
|
|
18
|
+
private constructor();
|
|
19
|
+
/** String coercion returns the canonical path. */
|
|
20
|
+
toString(): string;
|
|
21
|
+
/** JSON serialization returns the canonical path. */
|
|
22
|
+
toJSON(): string;
|
|
23
|
+
/** @internal Factory — only used by the module-level factory functions below. */
|
|
24
|
+
static _create(canonical: string): ProjectRoot;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
/** Canonical list of log level names, most verbose to least verbose. */
|
|
28
|
+
declare const LOG_LEVELS: readonly ["trace", "debug", "info", "warning", "error", "critical", "off"];
|
|
29
|
+
/** String log level name — used for configuration, parsing, and display. */
|
|
30
|
+
type LogLevel = (typeof LOG_LEVELS)[number];
|
|
31
|
+
/**
|
|
32
|
+
* Numeric log level constants for hot-path level checks.
|
|
33
|
+
*
|
|
34
|
+
* Lower numbers are more verbose. Use with `isLevelEnabled`:
|
|
35
|
+
*
|
|
36
|
+
* ```ts
|
|
37
|
+
* if (log.isLevelEnabled(Level.Debug)) log.debug(`rebuilt ${count} graphs`);
|
|
38
|
+
* ```
|
|
39
|
+
*/
|
|
40
|
+
declare const Level: {
|
|
41
|
+
readonly Trace: 0;
|
|
42
|
+
readonly Debug: 1;
|
|
43
|
+
readonly Info: 2;
|
|
44
|
+
readonly Warning: 3;
|
|
45
|
+
readonly Error: 4;
|
|
46
|
+
readonly Critical: 5;
|
|
47
|
+
readonly Off: 6;
|
|
48
|
+
};
|
|
49
|
+
/** Numeric log level value (0–6). */
|
|
50
|
+
type LevelValue = (typeof Level)[keyof typeof Level];
|
|
51
|
+
/**
|
|
52
|
+
* Logger — shared logging interface for all packages.
|
|
53
|
+
*
|
|
54
|
+
* Levels match VS Code's LogLevel enum: Trace, Debug, Info, Warning, Error, Critical, Off.
|
|
55
|
+
*
|
|
56
|
+
* Backends are environment-specific (LSP connection, CLI stderr, noop for tests).
|
|
57
|
+
* The interface lives here so ganko and @drskillissue/ganko-shared consumers can log
|
|
58
|
+
* without depending on ganko.
|
|
59
|
+
*
|
|
60
|
+
* Use `isLevelEnabled` to guard expensive log argument computation:
|
|
61
|
+
*
|
|
62
|
+
* ```ts
|
|
63
|
+
* if (log.isLevelEnabled(Level.Debug)) log.debug(`rebuilt ${count} graphs in ${elapsed}ms`);
|
|
64
|
+
* ```
|
|
65
|
+
*
|
|
66
|
+
* This checks against the actual log level threshold — a single integer
|
|
67
|
+
* comparison with no lookup table. Template literals and function calls
|
|
68
|
+
* inside the guard are never evaluated when the level is disabled.
|
|
69
|
+
*/
|
|
70
|
+
interface Logger {
|
|
71
|
+
/** The active log level threshold. Messages below this level are suppressed. */
|
|
72
|
+
readonly level: LogLevel;
|
|
73
|
+
/** Check whether a specific level would produce output at the current threshold. */
|
|
74
|
+
isLevelEnabled(level: LevelValue): boolean;
|
|
75
|
+
trace(message: string): void;
|
|
76
|
+
debug(message: string): void;
|
|
77
|
+
info(message: string): void;
|
|
78
|
+
warning(message: string): void;
|
|
79
|
+
error(message: string, err?: Error): void;
|
|
80
|
+
critical(message: string, err?: Error): void;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
interface WorkspacePackage {
|
|
84
|
+
readonly path: string;
|
|
85
|
+
readonly name: string | null;
|
|
86
|
+
readonly dependencies: ReadonlySet<string>;
|
|
87
|
+
readonly packageJsonPath: string;
|
|
88
|
+
}
|
|
89
|
+
interface WorkspaceLayout {
|
|
90
|
+
readonly root: ProjectRoot;
|
|
91
|
+
readonly packages: readonly WorkspacePackage[];
|
|
92
|
+
readonly packagePaths: ReadonlySet<string>;
|
|
93
|
+
readonly allDependencyNames: ReadonlySet<string>;
|
|
94
|
+
readonly allPackageJsonPaths: readonly string[];
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* String Interning Utilities
|
|
99
|
+
*
|
|
100
|
+
* String interning stores a single copy of each unique string value
|
|
101
|
+
* and reuses that reference, reducing memory usage for frequently
|
|
102
|
+
* repeated strings.
|
|
103
|
+
*/
|
|
104
|
+
/**
|
|
105
|
+
* A string interner that stores canonical string references.
|
|
106
|
+
*
|
|
107
|
+
* When the same string value is encountered multiple times, the interner
|
|
108
|
+
* returns the same reference, enabling reference equality comparisons
|
|
109
|
+
* and reducing memory usage.
|
|
110
|
+
*
|
|
111
|
+
* @example
|
|
112
|
+
* const interner = new StringInterner();
|
|
113
|
+
* const a = interner.intern("hello");
|
|
114
|
+
* const b = interner.intern("hello");
|
|
115
|
+
* console.log(a === b); // true (same reference)
|
|
116
|
+
*/
|
|
117
|
+
declare class StringInterner {
|
|
118
|
+
private readonly table;
|
|
119
|
+
/**
|
|
120
|
+
* Intern a string, returning a canonical reference.
|
|
121
|
+
*
|
|
122
|
+
* If the string has been seen before, returns the existing reference.
|
|
123
|
+
* Otherwise, stores and returns the input string.
|
|
124
|
+
*
|
|
125
|
+
* @param s - The string to intern
|
|
126
|
+
* @returns The canonical interned string
|
|
127
|
+
*/
|
|
128
|
+
intern(s: string): string;
|
|
129
|
+
/**
|
|
130
|
+
* Check if a string has been interned.
|
|
131
|
+
*
|
|
132
|
+
* @param s - The string to check
|
|
133
|
+
* @returns True if the string is already in the intern table
|
|
134
|
+
*/
|
|
135
|
+
has(s: string): boolean;
|
|
136
|
+
/**
|
|
137
|
+
* Get the interned version of a string if it exists.
|
|
138
|
+
*
|
|
139
|
+
* @param s - The string to look up
|
|
140
|
+
* @returns The interned string or undefined
|
|
141
|
+
*/
|
|
142
|
+
get(s: string): string | undefined;
|
|
143
|
+
/**
|
|
144
|
+
* Clear all interned strings.
|
|
145
|
+
*/
|
|
146
|
+
clear(): void;
|
|
147
|
+
/**
|
|
148
|
+
* Get the number of interned strings.
|
|
149
|
+
*
|
|
150
|
+
* @returns The number of strings in the intern table
|
|
151
|
+
*/
|
|
152
|
+
get size(): number;
|
|
153
|
+
/**
|
|
154
|
+
* Pre-intern a set of strings.
|
|
155
|
+
*
|
|
156
|
+
* @param strings - Array of strings to intern
|
|
157
|
+
*/
|
|
158
|
+
internAll(strings: readonly string[]): void;
|
|
159
|
+
/**
|
|
160
|
+
* Pre-intern strings from an object's values.
|
|
161
|
+
*
|
|
162
|
+
* @param obj - Object whose string values should be interned
|
|
163
|
+
*/
|
|
164
|
+
internFromObject(obj: Record<string, string>): void;
|
|
165
|
+
}
|
|
5
166
|
|
|
6
167
|
type MessageId = string;
|
|
7
168
|
type Message = string;
|
|
@@ -159,6 +320,12 @@ declare class TypeResolver {
|
|
|
159
320
|
private typeCache;
|
|
160
321
|
private solidSymbolCache;
|
|
161
322
|
readonly logger: Logger;
|
|
323
|
+
/**
|
|
324
|
+
* Create a resolver backed by a TypeScript type checker.
|
|
325
|
+
*
|
|
326
|
+
* @param checker - Type checker used for all type queries
|
|
327
|
+
* @param logger - Optional logger for debug output
|
|
328
|
+
*/
|
|
162
329
|
constructor(checker: ts.TypeChecker, logger?: Logger);
|
|
163
330
|
private isSymbolFromSolid;
|
|
164
331
|
private isSolidSymbol;
|
|
@@ -1426,6 +1593,9 @@ interface SolidSyntaxTree {
|
|
|
1426
1593
|
readonly name: string;
|
|
1427
1594
|
}>;
|
|
1428
1595
|
readonly componentFunctions: readonly FunctionEntity[];
|
|
1596
|
+
/** Maps sub-component function scope ID → compound base's children-forwarding JSX element ID.
|
|
1597
|
+
* Built from Object.assign compound component patterns during syntax tree construction. */
|
|
1598
|
+
readonly compoundComponentParents: ReadonlyMap<number, number>;
|
|
1429
1599
|
readonly functionsWithReactiveCaptures: readonly FunctionEntity[];
|
|
1430
1600
|
readonly reactiveVariables: readonly VariableEntity$1[];
|
|
1431
1601
|
readonly propsVariables: readonly VariableEntity$1[];
|
|
@@ -1539,6 +1709,7 @@ interface SolidBuildContext {
|
|
|
1539
1709
|
name: string;
|
|
1540
1710
|
}>;
|
|
1541
1711
|
componentFunctions: FunctionEntity[];
|
|
1712
|
+
compoundComponentParents: ReadonlyMap<number, number>;
|
|
1542
1713
|
functionsWithReactiveCaptures: FunctionEntity[];
|
|
1543
1714
|
reactiveVariables: VariableEntity$1[];
|
|
1544
1715
|
propsVariables: VariableEntity$1[];
|
|
@@ -1595,13 +1766,6 @@ interface SolidBuildContext {
|
|
|
1595
1766
|
findExpressionAtOffset(offset: number): ts.Node | null;
|
|
1596
1767
|
}
|
|
1597
1768
|
|
|
1598
|
-
/**
|
|
1599
|
-
* Solid analysis entry point.
|
|
1600
|
-
*
|
|
1601
|
-
* Builds a SolidSyntaxTree from a SolidInput by running all analysis phases
|
|
1602
|
-
* against a mutable SolidBuildContext, then freezing the result.
|
|
1603
|
-
*/
|
|
1604
|
-
|
|
1605
1769
|
/**
|
|
1606
1770
|
* Build a SolidSyntaxTree from input.
|
|
1607
1771
|
*
|