firefly-compiler 0.4.12 → 0.4.13
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/core/Json.ff +1 -1
- package/package.json +1 -1
- package/vscode/package.json +1 -1
package/core/Json.ff
CHANGED
|
@@ -255,7 +255,7 @@ extend self: Json {
|
|
|
255
255
|
|
|
256
256
|
}
|
|
257
257
|
|
|
258
|
-
internalWith(self: Json, field: String,
|
|
258
|
+
internalWith(self: Json, field: String, value: Json): Json
|
|
259
259
|
target js sync """
|
|
260
260
|
if(typeof self_ !== 'object' || self_ === null || Array.isArray(self_)) {
|
|
261
261
|
throw new Error('Not an object: ' + JSON.stringify(self_));
|
package/package.json
CHANGED