aboutsummaryrefslogtreecommitdiff
path: root/interpreter.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-02-23 23:00:00 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2013-02-23 23:00:00 +0200
commit7abe15a7baf6065b10a121b10f6d9edda6ed8280 (patch)
treee9423cfe9649e42f6cb7688782c79cd6d20db0b5 /interpreter.py
parent15aa29bf158c65a70d555c0d5b507ccfc6e84cca (diff)
downloadmeson-7abe15a7baf6065b10a121b10f6d9edda6ed8280.zip
meson-7abe15a7baf6065b10a121b10f6d9edda6ed8280.tar.gz
meson-7abe15a7baf6065b10a121b10f6d9edda6ed8280.tar.bz2
Pipeline backend is done and works.
Diffstat (limited to 'interpreter.py')
-rwxr-xr-xinterpreter.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/interpreter.py b/interpreter.py
index 67ee6a3..2a79b87 100755
--- a/interpreter.py
+++ b/interpreter.py
@@ -50,6 +50,9 @@ class Generator(InterpreterObject):
self.methods.update({'process' : self.process_method})
self.process_kwargs(kwargs)
+ def get_exe(self):
+ return self.exe
+
def process_kwargs(self, kwargs):
if 'arguments' not in kwargs:
raise InvalidArguments('Generator must have "arguments" keyword argument.')
@@ -90,6 +93,9 @@ class Generator(InterpreterObject):
[gl.add_file(a) for a in args]
return gl
+ def get_arglist(self):
+ return self.arglist
+
class GeneratedList(InterpreterObject):
def __init__(self, generator):
InterpreterObject.__init__(self)