@markw65/monkeyc-optimizer 1.1.35 → 1.1.36
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/CHANGELOG.md +5 -0
- package/build/api.cjs +31 -31
- package/build/{chunk-Q5WTV4CN.cjs → chunk-FD2NCZK4.cjs} +523 -802
- package/build/optimizer.cjs +17 -17
- package/build/sdk-util.cjs +14 -14
- package/build/worker-thread.cjs +3 -3
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to the "monkeyc-optimizer" package will be documented in this file.
|
|
4
4
|
|
|
5
|
+
### 1.1.36
|
|
6
|
+
|
|
7
|
+
- Update to [@markw65/prettier-plugin-monkeyc@1.0.52](https://github.com/markw65/prettier-plugin-monkeyc/blob/main/CHANGELOG.md#1052)
|
|
8
|
+
- Fixes a bug that didn't allow `import` or `using` inside a class declaration.
|
|
9
|
+
|
|
5
10
|
### 1.1.35
|
|
6
11
|
|
|
7
12
|
- Infrastructure
|
package/build/api.cjs
CHANGED
|
@@ -18,44 +18,44 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
18
18
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
19
|
var api_exports = {};
|
|
20
20
|
__export(api_exports, {
|
|
21
|
-
checkCompilerVersion: () =>
|
|
22
|
-
collectNamespaces: () =>
|
|
23
|
-
createDocumentationMap: () =>
|
|
24
|
-
diagnostic: () =>
|
|
25
|
-
diagnosticHelper: () =>
|
|
26
|
-
findNamesInScope: () =>
|
|
27
|
-
findUsingForNode: () =>
|
|
28
|
-
formatAst: () =>
|
|
29
|
-
formatAstLongLines: () =>
|
|
30
|
-
getApiFunctionInfo: () =>
|
|
31
|
-
getApiMapping: () =>
|
|
32
|
-
getSuperClasses: () =>
|
|
21
|
+
checkCompilerVersion: () => import_chunk_FD2NCZK4.checkCompilerVersion,
|
|
22
|
+
collectNamespaces: () => import_chunk_FD2NCZK4.collectNamespaces,
|
|
23
|
+
createDocumentationMap: () => import_chunk_FD2NCZK4.createDocumentationMap,
|
|
24
|
+
diagnostic: () => import_chunk_FD2NCZK4.diagnostic,
|
|
25
|
+
diagnosticHelper: () => import_chunk_FD2NCZK4.diagnosticHelper,
|
|
26
|
+
findNamesInScope: () => import_chunk_FD2NCZK4.findNamesInScope,
|
|
27
|
+
findUsingForNode: () => import_chunk_FD2NCZK4.findUsingForNode,
|
|
28
|
+
formatAst: () => import_chunk_FD2NCZK4.formatAst,
|
|
29
|
+
formatAstLongLines: () => import_chunk_FD2NCZK4.formatAstLongLines,
|
|
30
|
+
getApiFunctionInfo: () => import_chunk_FD2NCZK4.getApiFunctionInfo,
|
|
31
|
+
getApiMapping: () => import_chunk_FD2NCZK4.getApiMapping,
|
|
32
|
+
getSuperClasses: () => import_chunk_FD2NCZK4.getSuperClasses,
|
|
33
33
|
hasProperty: () => import_chunk_MBTLUWXR.hasProperty,
|
|
34
|
-
isClassVariable: () =>
|
|
35
|
-
isLocal: () =>
|
|
36
|
-
isLookupCandidate: () =>
|
|
37
|
-
isStateNode: () =>
|
|
38
|
-
lookupByFullName: () =>
|
|
39
|
-
lookupNext: () =>
|
|
40
|
-
lookupResultContains: () =>
|
|
41
|
-
lookupWithType: () =>
|
|
42
|
-
makeToyboxLink: () =>
|
|
43
|
-
mapVarDeclsByType: () =>
|
|
44
|
-
markInvokeClassMethod: () =>
|
|
45
|
-
parseSdkVersion: () =>
|
|
46
|
-
sameLookupResult: () =>
|
|
34
|
+
isClassVariable: () => import_chunk_FD2NCZK4.isClassVariable,
|
|
35
|
+
isLocal: () => import_chunk_FD2NCZK4.isLocal,
|
|
36
|
+
isLookupCandidate: () => import_chunk_FD2NCZK4.isLookupCandidate,
|
|
37
|
+
isStateNode: () => import_chunk_FD2NCZK4.isStateNode,
|
|
38
|
+
lookupByFullName: () => import_chunk_FD2NCZK4.lookupByFullName,
|
|
39
|
+
lookupNext: () => import_chunk_FD2NCZK4.lookupNext,
|
|
40
|
+
lookupResultContains: () => import_chunk_FD2NCZK4.lookupResultContains,
|
|
41
|
+
lookupWithType: () => import_chunk_FD2NCZK4.lookupWithType,
|
|
42
|
+
makeToyboxLink: () => import_chunk_FD2NCZK4.makeToyboxLink,
|
|
43
|
+
mapVarDeclsByType: () => import_chunk_FD2NCZK4.mapVarDeclsByType,
|
|
44
|
+
markInvokeClassMethod: () => import_chunk_FD2NCZK4.markInvokeClassMethod,
|
|
45
|
+
parseSdkVersion: () => import_chunk_FD2NCZK4.parseSdkVersion,
|
|
46
|
+
sameLookupResult: () => import_chunk_FD2NCZK4.sameLookupResult,
|
|
47
47
|
traverseAst: () => import_chunk_MBTLUWXR.traverseAst,
|
|
48
|
-
variableDeclarationName: () =>
|
|
49
|
-
visitReferences: () =>
|
|
50
|
-
visit_resources: () =>
|
|
51
|
-
visitorNode: () =>
|
|
48
|
+
variableDeclarationName: () => import_chunk_FD2NCZK4.variableDeclarationName,
|
|
49
|
+
visitReferences: () => import_chunk_FD2NCZK4.visitReferences,
|
|
50
|
+
visit_resources: () => import_chunk_FD2NCZK4.visit_resources,
|
|
51
|
+
visitorNode: () => import_chunk_FD2NCZK4.visitorNode
|
|
52
52
|
});
|
|
53
53
|
module.exports = __toCommonJS(api_exports);
|
|
54
|
-
var
|
|
54
|
+
var import_chunk_FD2NCZK4 = require("./chunk-FD2NCZK4.cjs");
|
|
55
55
|
var import_chunk_PVBIKZYZ = require("./chunk-PVBIKZYZ.cjs");
|
|
56
56
|
var import_chunk_MBTLUWXR = require("./chunk-MBTLUWXR.cjs");
|
|
57
57
|
var import_chunk_ABYVSU2C = require("./chunk-ABYVSU2C.cjs");
|
|
58
|
-
(0,
|
|
58
|
+
(0, import_chunk_FD2NCZK4.init_api)();
|
|
59
59
|
// Annotate the CommonJS export names for ESM import in node:
|
|
60
60
|
0 && (module.exports = {
|
|
61
61
|
checkCompilerVersion,
|