comparison trunk/src/dil/ast/Type.d @ 791:5fe89bb8cbdd

Implemented syntax tree copying.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Tue, 26 Feb 2008 20:13:41 +0100
parents 5e3ef1b2011c
children
comparison
equal deleted inserted replaced
790:a83a07f6233d 791:5fe89bb8cbdd
31 auto type = this; 31 auto type = this;
32 while (type.next) 32 while (type.next)
33 type = type.next; 33 type = type.next;
34 return type; 34 return type;
35 } 35 }
36
37 override abstract TypeNode copy();
36 } 38 }