tpmkms 9.6.3-beta.4 → 9.6.3-beta.5
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/common/drone.js +3 -1
- package/common/drone.test.json +13799 -6
- package/common/properties.js +0 -1
- package/package.json +2 -2
package/common/drone.js
CHANGED
|
@@ -1139,14 +1139,16 @@ const template = {
|
|
|
1139
1139
|
return true
|
|
1140
1140
|
}
|
|
1141
1141
|
},
|
|
1142
|
-
apply: async ({context, e, fragments, stm, toEValue, toArray, objects, remember, recall, resolveEvaluate, _continue, contextHierarchy}) => {
|
|
1142
|
+
apply: async ({frameOfReference, context, e, fragments, stm, toEValue, toArray, objects, remember, recall, resolveEvaluate, _continue, contextHierarchy}) => {
|
|
1143
1143
|
const evaluated = await e({...context, notUnderCall: true})
|
|
1144
1144
|
const pointsContext = toEValue(evaluated)
|
|
1145
1145
|
const pathComponents = toArray(pointsContext)
|
|
1146
1146
|
|
|
1147
1147
|
const path = (await fragments('path')).contexts()[0]
|
|
1148
1148
|
delete path.value
|
|
1149
|
+
path.instance = true
|
|
1149
1150
|
path.points = [...pathComponents]
|
|
1151
|
+
frameOfReference(path, { mentioned: 'points', reversed: true })
|
|
1150
1152
|
await remember(path)
|
|
1151
1153
|
resolveEvaluate(context, path)
|
|
1152
1154
|
},
|