mirror of
https://github.com/nushell/nushell.git
synced 2025-01-08 07:20:23 +01:00
7c84634e3f
# 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 ``` |
||
---|---|---|
.. | ||
deparse.rs | ||
exportable.rs | ||
flatten.rs | ||
known_external.rs | ||
lex.rs | ||
lib.rs | ||
lite_parser.rs | ||
parse_keywords.rs | ||
parse_patterns.rs | ||
parse_shape_specs.rs | ||
parser.rs | ||
type_check.rs |