aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/mparser.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2019-03-02 02:57:24 -0800
committerJussi Pakkanen <jpakkane@gmail.com>2019-03-02 12:57:24 +0200
commit841da29d2cc185e7bc96f4d97ec2963472840e9c (patch)
tree4f306a7b36bb55d145cc49c57f8a49b91073b38a /mesonbuild/mparser.py
parentcb9b151985ebc3a8253eb31d1ccb27c0e1d67967 (diff)
downloadmeson-841da29d2cc185e7bc96f4d97ec2963472840e9c.zip
meson-841da29d2cc185e7bc96f4d97ec2963472840e9c.tar.gz
meson-841da29d2cc185e7bc96f4d97ec2963472840e9c.tar.bz2
Fix ternary in thing (#5007)
* tests: extend ternary test to cover bugs See issues #5003, #3690, and #2404 * mparser: store subdir in ternary node Ternaries don't really need subdirs, but they can be passed into functions that expect the type they're provided to have a subdir. Provide it to fulful the interface. Fixes #5003 Fixes #3690 Fixes #2404
Diffstat (limited to 'mesonbuild/mparser.py')
-rw-r--r--mesonbuild/mparser.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/mesonbuild/mparser.py b/mesonbuild/mparser.py
index f18352b..e6a1bce 100644
--- a/mesonbuild/mparser.py
+++ b/mesonbuild/mparser.py
@@ -405,7 +405,8 @@ class IfNode(BaseNode):
self.block = block
class TernaryNode(BaseNode):
- def __init__(self, lineno, colno, condition, trueblock, falseblock):
+ def __init__(self, subdir, lineno, colno, condition, trueblock, falseblock):
+ self.subdir = subdir
self.lineno = lineno
self.colno = colno
self.condition = condition
@@ -540,7 +541,7 @@ class Parser:
self.expect('colon')
falseblock = self.e1()
self.in_ternary = False
- return TernaryNode(left.lineno, left.colno, left, trueblock, falseblock)
+ return TernaryNode(left.subdir, left.lineno, left.colno, left, trueblock, falseblock)
return left
def e2(self):