@artel/artc 0.6.25197 → 0.6.25199
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 +1 -1
- package/build/{chunk-4ZFXL7NZ.js → chunk-3GNNWLPI.js} +1 -1
- package/build/{chunk-TQB4ETIO.js → chunk-C6IRFSL4.js} +4 -8
- package/build/{chunk-QRPXAOTX.js → chunk-GDX24YCM.js} +2 -2
- package/package.json +2 -2
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-GDX24YCM.js";
|
5
|
+
import "./chunk-3GNNWLPI.js";
|
6
6
|
import {
|
7
7
|
__async
|
8
|
-
} from "./chunk-
|
8
|
+
} from "./chunk-C6IRFSL4.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-3GNNWLPI.js";
|
4
4
|
import {
|
5
5
|
AccessKind,
|
6
6
|
AccessedMethodValueParameter,
|
@@ -330,7 +330,7 @@ import {
|
|
330
330
|
visitChildrenRecursively,
|
331
331
|
withoutQuotes,
|
332
332
|
yieldExecution
|
333
|
-
} from "../chunk-
|
333
|
+
} from "../chunk-C6IRFSL4.js";
|
334
334
|
export {
|
335
335
|
AccessKind,
|
336
336
|
AccessedMethodValueParameter,
|
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-GDX24YCM.js";
|
10
|
+
import "../chunk-3GNNWLPI.js";
|
11
|
+
import "../chunk-C6IRFSL4.js";
|
12
12
|
export {
|
13
13
|
CommandLineCompiler,
|
14
14
|
FileSystemUri,
|
package/build/api/ApiServices.js
CHANGED
@@ -521,7 +521,7 @@ var UniqueQuery = class extends Query {
|
|
521
521
|
};
|
522
522
|
|
523
523
|
// source/common/Constants.ts
|
524
|
-
var ArtelVersion = true ? "0.6.
|
524
|
+
var ArtelVersion = true ? "0.6.25199" : "";
|
525
525
|
var ArtelSourceFileExtensions = [".\u0430\u0440\u0442", ".\u0430\u0440\u0442\u0435\u043B\u044C", ".art", ".artel"];
|
526
526
|
var ArtelSourceFileExtensionSet = new Set(ArtelSourceFileExtensions);
|
527
527
|
var ArtelSourceAndConfigurationFileExtensionSet = new Set(ArtelSourceFileExtensionSet).add(".json");
|
@@ -11121,13 +11121,9 @@ var Name = class _Name {
|
|
11121
11121
|
backQuoteCount++;
|
11122
11122
|
lastCharIndex--;
|
11123
11123
|
}
|
11124
|
-
|
11125
|
-
if ((flags & 16 /* EscapedKeyword */) !== 0 && consideredBackQuoteCount > 0) {
|
11126
|
-
consideredBackQuoteCount--;
|
11127
|
-
}
|
11128
|
-
if (consideredBackQuoteCount === 1) {
|
11124
|
+
if (backQuoteCount === 1) {
|
11129
11125
|
flags |= 32 /* ConflictResolvingParameterName */;
|
11130
|
-
} else if (
|
11126
|
+
} else if (backQuoteCount === 2) {
|
11131
11127
|
flags |= 64 /* BackingVariableName */;
|
11132
11128
|
}
|
11133
11129
|
if (firstCharIndex <= lastCharIndex && original.charAt(lastCharIndex) === "'") {
|
@@ -11150,7 +11146,7 @@ var Name = class _Name {
|
|
11150
11146
|
if ((flags & 8 /* RequiresQuotes */) !== 0) {
|
11151
11147
|
result = `'${originalWithoutQuotes}'`;
|
11152
11148
|
} else if ((flags & 16 /* EscapedKeyword */) !== 0) {
|
11153
|
-
result = originalWithoutQuotes
|
11149
|
+
result = `'${originalWithoutQuotes}'`;
|
11154
11150
|
} else {
|
11155
11151
|
result = originalWithoutQuotes;
|
11156
11152
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import {
|
2
2
|
Compiler
|
3
|
-
} from "./chunk-
|
3
|
+
} from "./chunk-3GNNWLPI.js";
|
4
4
|
import {
|
5
5
|
ArtelVersion,
|
6
6
|
Cached,
|
@@ -14,7 +14,7 @@ import {
|
|
14
14
|
__async,
|
15
15
|
performanceMeasurementStageNames,
|
16
16
|
performanceMeasurementStages
|
17
|
-
} from "./chunk-
|
17
|
+
} from "./chunk-C6IRFSL4.js";
|
18
18
|
|
19
19
|
// source/executor/FileSystemUri.ts
|
20
20
|
import { platform } from "os";
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@artel/artc",
|
3
|
-
"version": "0.6.
|
3
|
+
"version": "0.6.25199",
|
4
4
|
"description": "Артель Компилятор | Artel Compiler",
|
5
5
|
"author": "Nezaboodka Team <contact@nezaboodka.com>",
|
6
6
|
"license": "Apache License 2.0",
|
@@ -41,7 +41,7 @@
|
|
41
41
|
"@babel/types": "7.23.0",
|
42
42
|
"@vscode/l10n": "0.0.18",
|
43
43
|
"jsonc-parser": "3.3.1",
|
44
|
-
"reactronic": "0.92.
|
44
|
+
"reactronic": "0.92.25011",
|
45
45
|
"typescript": "5.5.4",
|
46
46
|
"vscode-json-languageservice": "5.4.2",
|
47
47
|
"vscode-languageserver": "9.0.1",
|