]> granicus.if.org Git - jq/commit
Fix a horrible scoping/associativity bug.
authorStephen Dolan <mu@netsoc.tcd.ie>
Sun, 2 Dec 2012 22:22:08 +0000 (22:22 +0000)
committerStephen Dolan <mu@netsoc.tcd.ie>
Sun, 2 Dec 2012 22:22:08 +0000 (22:22 +0000)
commit63d10433c9e92028d5b6acda47119bde998eae1f
treee0d4e1506d3c0c60de6ce2162f80dc5ed5814159
parentea9db414edd078d8cb5e95a7694df7ae81d6daac
Fix a horrible scoping/associativity bug.

`1 as $x | . | $x` didn't compile, as it was parsed as

    (1 as $x | .) | $x

where `$x` is undefined, rather than as

    1 as $x | (. | $x)
parser.y
testdata