comparison src/dil/ast/Expression.d @ 838:1ecf05e680ba

Changed build configuration. From now on, the executable will be placed in bin/. The postbuild.* scripts for Linux and Windows will place important files in bin/ and bin/data/. Added hasType() to class Expression. Added search() to class Scope. Added DontKnowYet to struct Types.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Wed, 20 Aug 2008 20:39:16 +0200
parents bcb74c9b895c
children
comparison
equal deleted inserted replaced
837:110f741dab45 838:1ecf05e680ba
16 this() 16 this()
17 { 17 {
18 super(NodeCategory.Expression); 18 super(NodeCategory.Expression);
19 } 19 }
20 20
21 /// Returns true if the member 'type' is not null.
22 bool hasType()
23 {
24 return type !is null;
25 }
26
21 override abstract Expression copy(); 27 override abstract Expression copy();
22 } 28 }