aboutsummaryrefslogtreecommitdiff
path: root/nodes.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-07-27 17:58:17 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2013-07-27 17:58:17 +0300
commit6a17d6994dc1b9a249ad5be31e06a7ba9e80454d (patch)
treed4d4c159b9b606fe8f6fe849d48d6a5ccafa1f05 /nodes.py
parente8fba977f4d23b268a649769d16cea9fc3b7cc01 (diff)
downloadmeson-6a17d6994dc1b9a249ad5be31e06a7ba9e80454d.zip
meson-6a17d6994dc1b9a249ad5be31e06a7ba9e80454d.tar.gz
meson-6a17d6994dc1b9a249ad5be31e06a7ba9e80454d.tar.bz2
Cleaner, simpler elif.
Diffstat (limited to 'nodes.py')
-rw-r--r--nodes.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/nodes.py b/nodes.py
index bc149f8..49d68e8 100644
--- a/nodes.py
+++ b/nodes.py
@@ -106,13 +106,6 @@ class IfStatement(Statement):
self.trueblock = trueblock
self.falseblock = falseblock
-class ElifStatement(Statement):
- def __init__(self, clause, trueblock, elseblock, lineno):
- Statement.__init__(self, lineno)
- self.clause = clause
- self.trueblock = trueblock
- self.elseblock = elseblock
-
def get_clause(self):
return self.clause