summaryrefslogtreecommitdiff
path: root/ast.h
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2017-02-10 23:35:02 +0100
committertomsmeding <tom.smeding@gmail.com>2017-02-10 23:35:02 +0100
commitca45da0925cabc3bbf0d22d5d23ccb9a25d8e228 (patch)
treeb96cb309d210e62deccdebfcc5646cfa2f3cb384 /ast.h
parent269f28df980f34895c3c7181140963b4a86a1afc (diff)
Preliminary 'compiling'
Diffstat (limited to 'ast.h')
-rw-r--r--ast.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ast.h b/ast.h
index 3eec1a3..c681d52 100644
--- a/ast.h
+++ b/ast.h
@@ -37,12 +37,12 @@ public:
Type type;
StatementList body;
- vector<Expression> args;
+ vector<Name> args;
Site site;
ScopeDef();
- ScopeDef(Type type,const StatementList &body,const vector<Expression> &args);
+ ScopeDef(Type type,const StatementList &body,const vector<Name> &args);
// ScopeDef(Type type,const StatementList &body,const vector<Name> &args);
};