summaryrefslogtreecommitdiff
path: root/Build/source/utils/asymptote/fundec.cc
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/utils/asymptote/fundec.cc')
-rw-r--r--Build/source/utils/asymptote/fundec.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/Build/source/utils/asymptote/fundec.cc b/Build/source/utils/asymptote/fundec.cc
index 232b7550bb7..07369c7e1c5 100644
--- a/Build/source/utils/asymptote/fundec.cc
+++ b/Build/source/utils/asymptote/fundec.cc
@@ -116,6 +116,10 @@ public:
basicAssignExp(position pos, exp *dest, varinit *value)
: exp(pos), dest(dest), value(value) {}
+ void prettyprint(ostream &out, Int indent) {
+ prettyname(out, "basicAssignExp", indent);
+ }
+
types::ty *getType(coenv &e) {
return dest->getType(e);
}