nushell/crates/nu-protocol/src/ast
WindSoilder fb3350ebc3
Error on use path item1 item2, if item1 is not a module (#11183)
# Description
Fixes: #11143

# User-Facing Changes
Take the following as example:
```nushell
module foo { export def bar [] {}; export def baz [] {} }
```

`use foo bar baz` will be error:
```
❯ use foo c d
Error: nu::parser::wrong_import_pattern

  × Wrong import pattern structure.
   ╭─[entry #2:1:1]
 1 │ use foo c d
   ·           ┬
   ·           ╰── Trying to import something but the parent `c` is not a module, maybe you want to try `use <module> [<name1>, <name2>]`
   ╰────
```

# Tests + Formatting
Done
2023-12-05 11:38:45 +01:00
..
block.rs Support o>>, e>>, o+e>> to append output to an external file (#10764) 2023-11-27 07:52:39 -06:00
call.rs Add Argument::span() and Call::arguments_span() (#10983) 2023-11-19 21:43:56 +01:00
cell_path.rs Implement Display for CellPath (#11023) 2023-11-10 21:12:51 +01:00
expr.rs Spread operator in record literals (#11144) 2023-11-29 18:31:31 +01:00
expression.rs Spread operator in record literals (#11144) 2023-11-29 18:31:31 +01:00
import_pattern.rs Error on use path item1 item2, if item1 is not a module (#11183) 2023-12-05 11:38:45 +01:00
match_pattern.rs add match guards (#9621) 2023-07-16 12:25:12 +12:00
mod.rs Add pattern matching (#8590) 2023-03-24 14:52:01 +13:00
operator.rs Allow operator in constants (#10212) 2023-09-05 16:35:58 +02:00
pipeline.rs Support o>>, e>>, o+e>> to append output to an external file (#10764) 2023-11-27 07:52:39 -06:00