ember-source 7.4.0-beta.1 → 7.5.0-alpha.1
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-metadata.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "7.
|
|
2
|
+
"version": "7.5.0-alpha.1",
|
|
3
3
|
"buildType": "tag",
|
|
4
|
-
"SHA": "
|
|
5
|
-
"assetPath": "/tag/shas/
|
|
4
|
+
"SHA": "85d6b2c1fcc0bd332297a90943a4d1e6dce66e96",
|
|
5
|
+
"assetPath": "/tag/shas/85d6b2c1fcc0bd332297a90943a4d1e6dce66e96.tgz"
|
|
6
6
|
}
|
package/docs/data.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"name": "The Ember API",
|
|
4
4
|
"description": "The Ember API: a framework for building ambitious web applications",
|
|
5
5
|
"url": "https://emberjs.com/",
|
|
6
|
-
"version": "7.
|
|
6
|
+
"version": "7.5.0-alpha.1"
|
|
7
7
|
},
|
|
8
8
|
"files": {
|
|
9
9
|
"node_modules/rsvp/lib/rsvp/promise/all.js": {
|
|
@@ -21017,14 +21017,14 @@
|
|
|
21017
21017
|
},
|
|
21018
21018
|
{
|
|
21019
21019
|
"file": "packages/@glimmer/debug/lib/debug.ts",
|
|
21020
|
-
"line":
|
|
21020
|
+
"line": 117,
|
|
21021
21021
|
"description": "A dynamic operand has a value that can't be easily represented as an embedded string.",
|
|
21022
21022
|
"class": "Keywords",
|
|
21023
21023
|
"module": "@glimmer/component"
|
|
21024
21024
|
},
|
|
21025
21025
|
{
|
|
21026
21026
|
"file": "packages/@glimmer/debug/lib/debug.ts",
|
|
21027
|
-
"line":
|
|
21027
|
+
"line": 137,
|
|
21028
21028
|
"description": "A variable is a numeric offset into the stack (relative to the $fp register).",
|
|
21029
21029
|
"class": "Keywords",
|
|
21030
21030
|
"module": "@glimmer/component"
|
|
@@ -26098,11 +26098,11 @@
|
|
|
26098
26098
|
},
|
|
26099
26099
|
{
|
|
26100
26100
|
"message": "Missing item type\nA dynamic operand has a value that can't be easily represented as an embedded string.",
|
|
26101
|
-
"line": " packages/@glimmer/debug/lib/debug.ts:
|
|
26101
|
+
"line": " packages/@glimmer/debug/lib/debug.ts:117"
|
|
26102
26102
|
},
|
|
26103
26103
|
{
|
|
26104
26104
|
"message": "Missing item type\nA variable is a numeric offset into the stack (relative to the $fp register).",
|
|
26105
|
-
"line": " packages/@glimmer/debug/lib/debug.ts:
|
|
26105
|
+
"line": " packages/@glimmer/debug/lib/debug.ts:137"
|
|
26106
26106
|
},
|
|
26107
26107
|
{
|
|
26108
26108
|
"message": "Missing item type",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ember-source",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.5.0-alpha.1",
|
|
4
4
|
"description": "A JavaScript framework for creating ambitious web applications",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -375,9 +375,9 @@
|
|
|
375
375
|
"rsvp/index.js": "ember-source/rsvp/index.js"
|
|
376
376
|
}
|
|
377
377
|
},
|
|
378
|
-
"_originalVersion": "7.
|
|
378
|
+
"_originalVersion": "7.5.0-alpha.1",
|
|
379
379
|
"_versionPreviouslyCalculated": true,
|
|
380
380
|
"publishConfig": {
|
|
381
|
-
"tag": "
|
|
381
|
+
"tag": "alpha"
|
|
382
382
|
}
|
|
383
383
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
declare module '@glimmer/runtime/lib/opcodes' {
|
|
2
|
-
import type { DebugOp
|
|
2
|
+
import type { DebugOp } from "@glimmer/debug/lib/debug";
|
|
3
3
|
import type { DebugVmSnapshot, Dict, Nullable, Optional, RuntimeOp, VmMachineOp, VmOp } from "@glimmer/interfaces";
|
|
4
4
|
import { VmSnapshot } from "@glimmer/debug/lib/vm/snapshot";
|
|
5
5
|
import type { LowLevelVM, VM } from "@glimmer/runtime/lib/vm";
|
|
@@ -31,7 +31,6 @@ declare module '@glimmer/runtime/lib/opcodes' {
|
|
|
31
31
|
size: number;
|
|
32
32
|
};
|
|
33
33
|
closeGroup?: undefined | (() => void);
|
|
34
|
-
params?: Optional<Dict<SomeDisassembledOperand>>;
|
|
35
34
|
op?: Optional<DebugOp>;
|
|
36
35
|
debug: DebugVmSnapshot;
|
|
37
36
|
snapshot: VmSnapshot;
|