tpmkms_4wp 8.9.1-beta.5 → 8.9.1-beta.7

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.
@@ -45,11 +45,21 @@
45
45
  "theAble",
46
46
  false
47
47
  ],
48
+ [
49
+ "distributable",
50
+ "queryable",
51
+ false
52
+ ],
48
53
  [
49
54
  "doubleQuote",
50
55
  "queryable",
51
56
  false
52
57
  ],
58
+ [
59
+ "each",
60
+ "articlePOS",
61
+ false
62
+ ],
53
63
  [
54
64
  "emotion",
55
65
  "unknown",
@@ -60,6 +70,11 @@
60
70
  "verb",
61
71
  false
62
72
  ],
73
+ [
74
+ "every",
75
+ "articlePOS",
76
+ false
77
+ ],
63
78
  [
64
79
  "feel",
65
80
  "canBeDoQuestion",
@@ -966,36 +981,6 @@
966
981
  1
967
982
  ]
968
983
  ],
969
- [
970
- [
971
- "feel",
972
- 0
973
- ],
974
- [
975
- "is",
976
- 0
977
- ],
978
- [
979
- "means",
980
- 0
981
- ],
982
- [
983
- "propertyOf",
984
- 0
985
- ],
986
- [
987
- "the",
988
- 0
989
- ],
990
- [
991
- "unknown",
992
- 0
993
- ],
994
- [
995
- "unknown",
996
- 1
997
- ]
998
- ],
999
984
  [
1000
985
  [
1001
986
  "feel",
@@ -1193,36 +1178,6 @@
1193
1178
  1
1194
1179
  ]
1195
1180
  ],
1196
- [
1197
- [
1198
- "feel",
1199
- 0
1200
- ],
1201
- [
1202
- "is",
1203
- 0
1204
- ],
1205
- [
1206
- "means",
1207
- 0
1208
- ],
1209
- [
1210
- "propertyOf",
1211
- 0
1212
- ],
1213
- [
1214
- "the",
1215
- 0
1216
- ],
1217
- [
1218
- "unknown",
1219
- 0
1220
- ],
1221
- [
1222
- "unknown",
1223
- 1
1224
- ]
1225
- ],
1226
1181
  [
1227
1182
  [
1228
1183
  "feel",
package/common/errors.js CHANGED
@@ -21,6 +21,7 @@ let config = {
21
21
  match: ({context}) => context.interpretation_error,
22
22
  apply: async ({context, g, gp, verbatim, contexts}) => {
23
23
  const argument = contexts.find( (argument) => argument.argument_id == context.interpretation_error.argument_id )
24
+ debugger
24
25
  verbatim(`Did not know how to understand "${await gp(argument)}" when applying "${await g(context)}"`)
25
26
  }
26
27
  },
@@ -28,6 +29,7 @@ let config = {
28
29
  match: ({context}) => context.context?.interpretation_error,
29
30
  apply: async ({context, g, gp, verbatim, contexts}) => {
30
31
  context = context.context
32
+ debugger
31
33
  const argument = contexts.find( (argument) => argument.argument_id == context.interpretation_error.argument_id )
32
34
  verbatim(`Did not know how to understand "${await gp(argument)}" when applying "${await g(context)}"`)
33
35
  }