tpmkms 8.3.0-beta.5 → 8.3.0-beta.6

Sign up to get free protection for your applications and to get access to all the features.
package/common/errors.js CHANGED
@@ -24,7 +24,16 @@ let config = {
24
24
  const argument = contexts.find( (argument) => argument.argument_id == context.interpretation_error.argument_id )
25
25
  verbatim(`Did not know how to ${await g(context)}, ${await g(argument)}`)
26
26
  }
27
- }
27
+ },
28
+ {
29
+ match: ({context}) => context.context?.interpretation_error,
30
+ apply: async ({context, g, gp, verbatim, contexts}) => {
31
+ context = context.context
32
+ debugger
33
+ const argument = contexts.find( (argument) => argument.argument_id == context.interpretation_error.argument_id )
34
+ verbatim(`Did not know how to ${await g(context)} ${await gp(argument)}`)
35
+ }
36
+ },
28
37
  ],
29
38
  };
30
39
 
@@ -14,7 +14,6 @@ let config = {
14
14
  bridges: [
15
15
  {
16
16
  id: "ordinal",
17
- isA: ['number'],
18
17
  bridge: "{ instance: false, ordinal: true, ...next(operator) }"
19
18
  },
20
19
  {
@@ -134,11 +134,6 @@
134
134
  "ifAble",
135
135
  false
136
136
  ],
137
- [
138
- "ordinal",
139
- "number",
140
- false
141
- ],
142
137
  [
143
138
  "ordinalOnOrdered",
144
139
  "adjective",
package/package.json CHANGED
@@ -310,8 +310,8 @@
310
310
  "table": "^6.7.1",
311
311
  "base-64": "^1.0.0",
312
312
  "argparse": "^2.0.1",
313
- "theprogrammablemind": "8.3.0-beta.5"
313
+ "theprogrammablemind": "8.3.0-beta.6"
314
314
  },
315
- "version": "8.3.0-beta.5",
315
+ "version": "8.3.0-beta.6",
316
316
  "license": "UNLICENSED"
317
317
  }