(toI, _, ast)
| 334 | }) |
| 335 | }, |
| 336 | encode(toI, _, ast) { |
| 337 | return ParseResult.try({ |
| 338 | try: () => Msgpackr.encode(toI), |
| 339 | catch: (cause) => |
| 340 | new ParseResult.Type( |
| 341 | ast, |
| 342 | toI, |
| 343 | Predicate.hasProperty(cause, "message") ? String(cause.message) : String(cause) |
| 344 | ) |
| 345 | }) |
| 346 | } |
| 347 | } |
| 348 | ) |
no test coverage detected
searching dependent graphs…