mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-22 07:30:43 +00:00
* Move `$[[...]]` and `$[[[...]]]` out of the grammar and into Go * Update pkg/parsing/mlr.bnf * Update Go source * update test files * Fix NPE * .gitignore * more
12 lines
200 B
Text
12 lines
200 B
Text
$o = {
|
|
"a": {
|
|
"x": [1,2,3],
|
|
"y": [4,5,6],
|
|
},
|
|
"b": {
|
|
"s": [7,8,9],
|
|
"t": [9,5,1],
|
|
},
|
|
};
|
|
# Expect no assignment here since $o is absent
|
|
$z = $o[[1]]["x"];
|