summaryrefslogtreecommitdiff
path: root/graphics/asymptote/newexp.h
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/asymptote/newexp.h')
-rw-r--r--graphics/asymptote/newexp.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/graphics/asymptote/newexp.h b/graphics/asymptote/newexp.h
index d386b18100..cec21abf7b 100644
--- a/graphics/asymptote/newexp.h
+++ b/graphics/asymptote/newexp.h
@@ -19,11 +19,11 @@ namespace absyntax {
typedef fundef newFunctionExp;
class newRecordExp : public exp {
- ty *result;
+ astType *result;
- static bool encodeLevel(position pos, coenv &e, trans::tyEntry *ent);
public:
- newRecordExp(position pos, ty *result)
+ static bool encodeLevel(position pos, coenv &e, trans::tyEntry *ent);
+ newRecordExp(position pos, astType *result)
: exp(pos), result(result) {}
void prettyprint(ostream &out, Int indent);
@@ -36,14 +36,14 @@ public:
};
class newArrayExp : public exp {
- ty *celltype;
+ astType *celltype;
explist *dimexps;
dimensions *dims;
arrayinit *ai;
public:
newArrayExp(position pos,
- ty *celltype,
+ astType *celltype,
explist *dimexps,
dimensions *dims,
arrayinit *ai)