starlark_syntax 0.13.0

Starlark language AST
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# @generated
# To regenerate, run:
# ```
# STARLARK_RUST_REGENERATE_GOLDEN_TESTS=1 cargo test -p starlark --lib
# ```

Program:
def test(x=1, y): pass

Error: error: positional parameter after non positional
 --> test.star:1:15
  |
1 | def test(x=1, y): pass
  |               ^
  |