nushell/crates/nu-parser/src
Solomon 7c84634e3f
return accurate type errors from blocks/expressions in type unions (#14420)
# User-Facing Changes

- `expected <type>` errors are now propagated from
  `Closure | Block | Expression` instead of falling back to
  "expected one of..." for the block:

Before:

```nushell
def foo [bar: bool] {}
if true {} else { foo 1 }
                ────┬────
                    ╰── expected one of a list of accepted shapes: [Block, Expression]
```

After:

```nushell
if true {} else { foo 1 }
                      ┬
                      ╰── expected bool
```
2024-11-23 13:42:00 -08:00
..
deparse.rs Fix quoting in to nuon and refactor quoting functions (#14180) 2024-10-29 07:43:26 -05:00
exportable.rs Restructure nu-protocol in more meaningful units (#11917) 2024-03-10 18:45:45 +01:00
flatten.rs Make parsing for unknown args in known externals like normal external calls (#13414) 2024-07-21 01:32:36 -07:00
known_external.rs Change the usage misnomer to "description" (#13598) 2024-08-22 12:02:08 +02:00
lex.rs Fix parsing record values containing colons (#13413) 2024-08-28 22:53:56 +02:00
lib.rs Fix quoting in to nuon and refactor quoting functions (#14180) 2024-10-29 07:43:26 -05:00
lite_parser.rs Fix panic if tokens are placed after a redirection (#14035) 2024-10-22 10:37:03 -05:00
parse_keywords.rs fix error when exporting consts with type signatures in modules (#14118) 2024-10-22 11:54:31 +02:00
parse_patterns.rs Internal representation (IR) compiler and evaluator (#13330) 2024-07-10 17:33:59 -07:00
parse_shape_specs.rs Add command_prelude module (#12291) 2024-03-26 21:17:30 +00:00
parser.rs return accurate type errors from blocks/expressions in type unions (#14420) 2024-11-23 13:42:00 -08:00
type_check.rs Allow duration to be added to date (#14295) 2024-11-14 10:07:37 +01:00