@artel/artc 0.6.26017 → 0.6.26018
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 +2 -2
- package/build/api/ApiNodeJS.js +3 -3
- package/build/api/ApiServices.js +9 -13
- package/build/{chunk-UCBPXOLW.js → chunk-4LBH5LW4.js} +1 -1
- package/build/{chunk-SJFIPH42.js → chunk-NQCSWP3L.js} +961 -923
- package/build/{chunk-65XBWCU7.js → chunk-WVQAJC2B.js} +2 -2
- package/build/types/analysis/Analyzer.d.ts +3 -0
- package/build/types/analysis/BaseExpressionMeaning.d.ts +1 -0
- package/build/types/analysis/ObjectExpressionMeaning.d.ts +0 -1
- package/build/types/diagnostic/DiagnosticCode.d.ts +177 -174
- package/build/types/project/CompilationLoader.d.ts +3 -3
- package/build/types/project/SourcePackage.d.ts +3 -0
- package/build/types/project/configuration/ConfigurationConverter.d.ts +3 -5
- package/build/types/project/configuration/ConfigurationFileParser.d.ts +7 -6
- package/build/types/project/configuration/ConfigurationTranslator.d.ts +1 -3
- package/build/types/project/configuration/types/PackageConfigurationEn.d.ts +1 -2
- package/build/types/project/configuration/types/PackageConfigurationRu.d.ts +1 -2
- package/build/types/services/workspace/CompilationController.d.ts +2 -2
- 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-WVQAJC2B.js";
|
|
5
|
+
import "./chunk-4LBH5LW4.js";
|
|
6
6
|
import {
|
|
7
7
|
__async
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-NQCSWP3L.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-4LBH5LW4.js";
|
|
4
4
|
import {
|
|
5
5
|
AccessKind,
|
|
6
6
|
AccessedFunctionParameter,
|
|
@@ -342,7 +342,7 @@ import {
|
|
|
342
342
|
withoutQuotes,
|
|
343
343
|
withoutTemplateQuotes,
|
|
344
344
|
yieldTask
|
|
345
|
-
} from "../chunk-
|
|
345
|
+
} from "../chunk-NQCSWP3L.js";
|
|
346
346
|
export {
|
|
347
347
|
AccessKind,
|
|
348
348
|
AccessedFunctionParameter,
|
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-WVQAJC2B.js";
|
|
10
|
+
import "../chunk-4LBH5LW4.js";
|
|
11
|
+
import "../chunk-NQCSWP3L.js";
|
|
12
12
|
export {
|
|
13
13
|
CommandLineCompiler,
|
|
14
14
|
FileSystemUri,
|
package/build/api/ApiServices.js
CHANGED
|
@@ -184,7 +184,7 @@ import {
|
|
|
184
184
|
unwrapParenthesizedExpressions,
|
|
185
185
|
visitChildren,
|
|
186
186
|
yieldTask
|
|
187
|
-
} from "../chunk-
|
|
187
|
+
} from "../chunk-NQCSWP3L.js";
|
|
188
188
|
|
|
189
189
|
// source/services/CustomRequests.ts
|
|
190
190
|
import * as ls from "vscode-languageserver";
|
|
@@ -2915,7 +2915,7 @@ var CodeActionsService = class {
|
|
|
2915
2915
|
}
|
|
2916
2916
|
const result = new Array();
|
|
2917
2917
|
const diagnosticCodeSet = new Set(diagnosticCodes);
|
|
2918
|
-
if (diagnosticCodeSet.has(
|
|
2918
|
+
if (diagnosticCodeSet.has(2093 /* TheFollowingDeclarationsAreNotTranslated0 */) || diagnosticCodeSet.has(2094 /* TheFollowingDeclarationsAreNotTranslated0And1More */)) {
|
|
2919
2919
|
const data = { onlyTypeMembers: false };
|
|
2920
2920
|
result.push(CodeAction.unresolved(
|
|
2921
2921
|
"\u0421\u0433\u0435\u043D\u0435\u0440\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u043D\u0435\u0434\u043E\u0441\u0442\u0430\u044E\u0449\u0438\u0435 \u043F\u0435\u0440\u0435\u0432\u043E\u0434\u044B.",
|
|
@@ -9660,16 +9660,16 @@ var ClientTrackedSourceFileSnapshot = class {
|
|
|
9660
9660
|
// source/services/workspace/CompilationController.ts
|
|
9661
9661
|
import {
|
|
9662
9662
|
Indicator,
|
|
9663
|
-
RxObject as RxObject2,
|
|
9664
9663
|
Reentrance,
|
|
9664
|
+
RxObject as RxObject2,
|
|
9665
9665
|
Transaction,
|
|
9666
|
-
transaction as transaction2,
|
|
9667
9666
|
disposeRxObject as disposeRxObject2,
|
|
9668
9667
|
manageReaction,
|
|
9669
|
-
signal as signal2,
|
|
9670
9668
|
options,
|
|
9671
9669
|
reaction,
|
|
9672
|
-
runNonReactive
|
|
9670
|
+
runNonReactive,
|
|
9671
|
+
signal as signal2,
|
|
9672
|
+
transaction as transaction2
|
|
9673
9673
|
} from "reactronic";
|
|
9674
9674
|
var highPriorityDiagnosticsCollectionIndicator = Indicator.create(
|
|
9675
9675
|
"HighPriorityDiagnosticsCollectionIndicator",
|
|
@@ -10392,19 +10392,15 @@ var ConfigurationController = class extends RxObject2 {
|
|
|
10392
10392
|
if (this.jsonConfigurationFile !== void 0) {
|
|
10393
10393
|
const locale = LocaleByJsonConfigurationFileName.get(this.jsonConfigurationFile.name) ?? DefaultLocale;
|
|
10394
10394
|
const parsed = yield ConfigurationFileParser.parse(this.jsonConfigurationFile.text, locale, void 0);
|
|
10395
|
-
if (parsed
|
|
10396
|
-
this.convertedConfiguration_ = ConfigurationConverter.convert(parsed, this.packageUri, locale);
|
|
10395
|
+
if (parsed.isSome()) {
|
|
10396
|
+
this.convertedConfiguration_ = ConfigurationConverter.convert(parsed.unwrap(), this.packageUri, locale);
|
|
10397
10397
|
} else {
|
|
10398
10398
|
this.convertedConfiguration_ = void 0;
|
|
10399
10399
|
}
|
|
10400
10400
|
this.convertedJsonConfigurationFileVersion = this.jsonConfigurationFile.version;
|
|
10401
10401
|
} else {
|
|
10402
10402
|
const locale = LocaleByConfigurationDirectoryName.get(this.rootDirectory.name);
|
|
10403
|
-
|
|
10404
|
-
this.convertedConfiguration_ = {
|
|
10405
|
-
packageConfiguration: defaultPackageConfiguration,
|
|
10406
|
-
packageGroupConfiguration: void 0
|
|
10407
|
-
};
|
|
10403
|
+
this.convertedConfiguration_ = createDefaultPackageConfiguration(this.packageUri, locale, DefaultDialect);
|
|
10408
10404
|
}
|
|
10409
10405
|
this.convertedConfigurationVersion_++;
|
|
10410
10406
|
});
|