nushell/crates/nu-parser/src
Solomon 4968b6b9d0
fix error when exporting consts with type signatures in modules (#14118)
Fixes #14023

# Description

- Prevents "failed to find added variable" when modules export constants
  with type signatures:

```nushell
> module foo { export const bar: int = 2 }
Error: nu::parser::unknown_state

  × Internal error.
   ╭─[entry #1:1:21]
 1 │ module foo { export const bar: int = 2 }
   ·                     ─────────┬────────
   ·                              ╰── failed to find added variable
```

- Returns `name_is_builtin_var` errors for names with type signatures:

```nushell
> let env: string = "";
Error: nu::parser::name_is_builtin_var

  × `env` used as variable name.
   ╭─[entry #1:1:5]
 1 │ let env: string = "";
   ·     ─┬─
   ·      ╰── already a builtin variable
```
2024-10-22 11:54:31 +02:00
..
deparse.rs update deps calamine and quick-xml (#11582) 2024-01-19 12:23:51 -06: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 parsing record values containing colons (#13413) 2024-08-28 22:53:56 +02:00
lite_parser.rs Make assignment and const consistent with let/mut (#13385) 2024-07-30 18:55:22 -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 fix error when exporting consts with type signatures in modules (#14118) 2024-10-22 11:54:31 +02:00
type_check.rs allow bools to be type checked with each other (#13968) 2024-09-30 19:18:07 -05:00