summaryrefslogtreecommitdiff
path: root/ast.h
diff options
context:
space:
mode:
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);
};