tpmkms_4wp 7.12.4-beta.3 → 7.12.4-beta.4
Sign up to get free protection for your applications and to get access to all the features.
- package/common/fastfood.js +8 -0
- package/common/fastfood.test.json +1879 -0
- package/package.json +2 -2
package/common/fastfood.js
CHANGED
@@ -887,6 +887,14 @@ class State {
|
|
887
887
|
this.add(food)
|
888
888
|
}
|
889
889
|
},
|
890
|
+
{
|
891
|
+
where: where(),
|
892
|
+
match: ({context, isA}) => isA(context.marker, 'number') && !context.evaluate,
|
893
|
+
apply: ({context, e}) => {
|
894
|
+
food.comboNumber = { value: e(context).value }
|
895
|
+
this.add(Object.assign(food, context))
|
896
|
+
}
|
897
|
+
},
|
890
898
|
{
|
891
899
|
where: where(),
|
892
900
|
match: ({context, isA}) => isA(context.marker, food.marker),
|