(term: Expression)
| 1020 | if (type !== 'unknown') { |
| 1021 | ce.declare(undefs[0], type); |
| 1022 | recordDeclaredByAssumption(ce, undefs[0], proposition); |
| 1023 | return 'ok'; |
| 1024 | } |
| 1025 | // The domain does not map to a type: fall through to storing the |
| 1026 | // assumption verbatim (used to throw "Invalid domain") |
| 1027 | } |
| 1028 | if (undefs.length > 0) { |
| 1029 | ce.context.assumptions.set(proposition, true); |
| 1030 | return 'ok'; |
no test coverage detected