comparison trunk/src/dil/ast/Types.d @ 683:1ae72234db26

Implemented some methods in SemanticPass1. Renamed Symbol.ident to name. Added a constructor to Symbol. Adapted constructors of classes that inherit from Symbol. Added Alias and OverloadSet Symbol classes. Renamed idents and values to names and inits in VariablesDeclaration.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Mon, 21 Jan 2008 17:10:12 +0100
parents f1325a4506de
children 8e38774d562b
comparison
equal deleted inserted replaced
682:7541c64fc423 683:1ae72234db26
83 super(next); 83 super(next);
84 mixin(set_kind); 84 mixin(set_kind);
85 } 85 }
86 } 86 }
87 87
88 /// "typeof" "(" Expression ") 88 /// "typeof" "(" Expression ")"
89 class TypeofType : TypeNode 89 class TypeofType : TypeNode
90 { 90 {
91 Expression e; 91 Expression e;
92 this(Expression e) 92 this(Expression e)
93 { 93 {