@artel/artc 0.6.25233 → 0.6.25234
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/build/Cli.js +3 -3
- package/build/api/Api.js +8 -2
- package/build/api/ApiNodeJS.js +3 -3
- package/build/api/ApiServices.js +142 -142
- package/build/{chunk-SCSDVK4I.js → chunk-C2RH46GK.js} +1 -1
- package/build/{chunk-YA4OCEDT.js → chunk-ENNXNHHT.js} +2 -2
- package/build/{chunk-T4JAN46C.js → chunk-YAYSHO33.js} +1167 -601
- package/build/types/analysis/Analyzer.d.ts +12 -3
- package/build/types/analysis/BaseMemberConflictsValidator.d.ts +28 -0
- package/build/types/analysis/LocalizationContext.d.ts +3 -2
- package/build/types/analysis/ModifierValidator.d.ts +1 -4
- package/build/types/common/ArrayUtils.d.ts +1 -1
- package/build/types/common/Query.d.ts +1 -0
- package/build/types/diagnostic/DiagnosticCode.d.ts +2 -0
- package/build/types/diagnostic/TokenDiagnostic.d.ts +2 -0
- package/build/types/entities/TypeEntity.d.ts +3 -0
- package/build/types/parser/TokenKind.d.ts +55 -55
- package/build/types/tree/TokenKind.d.ts +54 -54
- package/build/types/types/TypeMembers.d.ts +15 -0
- package/package.json +1 -1
package/build/Cli.js
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
#!/usr/bin/env node
|
2
2
|
import {
|
3
3
|
CommandLineCompiler
|
4
|
-
} from "./chunk-
|
5
|
-
import "./chunk-
|
4
|
+
} from "./chunk-ENNXNHHT.js";
|
5
|
+
import "./chunk-C2RH46GK.js";
|
6
6
|
import {
|
7
7
|
__async
|
8
|
-
} from "./chunk-
|
8
|
+
} from "./chunk-YAYSHO33.js";
|
9
9
|
|
10
10
|
// source/Cli.ts
|
11
11
|
function main() {
|
package/build/api/Api.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import {
|
2
2
|
Compiler
|
3
|
-
} from "../chunk-
|
3
|
+
} from "../chunk-C2RH46GK.js";
|
4
4
|
import {
|
5
5
|
AccessKind,
|
6
6
|
AccessedFunctionValueParameter,
|
@@ -224,6 +224,7 @@ import {
|
|
224
224
|
TreeQuery,
|
225
225
|
TsInteropInputs,
|
226
226
|
TypeAssignabilityFlags,
|
227
|
+
TypeEntity,
|
227
228
|
TypeEntityKind,
|
228
229
|
TypeMemberEntity,
|
229
230
|
TypeMemberEntityContainer,
|
@@ -274,6 +275,8 @@ import {
|
|
274
275
|
isNonEmptyArray,
|
275
276
|
isOperatorDefinedByKeyword,
|
276
277
|
isOperatorDefinedByToken,
|
278
|
+
isOverridableTypeMember,
|
279
|
+
isOverridableTypeMemberEntity,
|
277
280
|
isPackageMemberEntity,
|
278
281
|
isPackageTypeEntity,
|
279
282
|
isReservedJavaScriptIdentifier,
|
@@ -317,7 +320,7 @@ import {
|
|
317
320
|
withoutQuotes,
|
318
321
|
withoutTemplateQuotes,
|
319
322
|
yieldExecution
|
320
|
-
} from "../chunk-
|
323
|
+
} from "../chunk-YAYSHO33.js";
|
321
324
|
export {
|
322
325
|
AccessKind,
|
323
326
|
AccessedFunctionValueParameter,
|
@@ -538,6 +541,7 @@ export {
|
|
538
541
|
TreeQuery,
|
539
542
|
TsInteropInputs,
|
540
543
|
TypeAssignabilityFlags,
|
544
|
+
TypeEntity,
|
541
545
|
TypeEntityKind,
|
542
546
|
TypeMemberEntity,
|
543
547
|
TypeMemberEntityContainer,
|
@@ -591,6 +595,8 @@ export {
|
|
591
595
|
isNonEmptyArray,
|
592
596
|
isOperatorDefinedByKeyword,
|
593
597
|
isOperatorDefinedByToken,
|
598
|
+
isOverridableTypeMember,
|
599
|
+
isOverridableTypeMemberEntity,
|
594
600
|
isPackageMemberEntity,
|
595
601
|
isPackageTypeEntity,
|
596
602
|
isReservedJavaScriptIdentifier,
|
package/build/api/ApiNodeJS.js
CHANGED
@@ -6,9 +6,9 @@ import {
|
|
6
6
|
PhysicalFileSystem,
|
7
7
|
PhysicalTypeScriptLibrariesProvider,
|
8
8
|
PrintingDiagnosticAcceptor
|
9
|
-
} from "../chunk-
|
10
|
-
import "../chunk-
|
11
|
-
import "../chunk-
|
9
|
+
} from "../chunk-ENNXNHHT.js";
|
10
|
+
import "../chunk-C2RH46GK.js";
|
11
|
+
import "../chunk-YAYSHO33.js";
|
12
12
|
export {
|
13
13
|
CommandLineCompiler,
|
14
14
|
FileSystemUri,
|