diff trunk/src/dil/semantic/Symbols.d @ 623:e2cd28cfc6ae

Added dil.semantic.Template.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Fri, 11 Jan 2008 01:45:24 +0100
parents 0749f30ef2d0
children 1ae72234db26
line wrap: on
line diff
--- a/trunk/src/dil/semantic/Symbols.d	Fri Jan 11 01:43:31 2008 +0100
+++ b/trunk/src/dil/semantic/Symbols.d	Fri Jan 11 01:45:24 2008 +0100
@@ -110,6 +110,16 @@
   }
 }
 
+class Template : ScopeSymbol
+{
+  this(Identifier* ident, Node templateNode)
+  {
+    this.sid = SYM.Template;
+    this.ident = ident;
+    this.node = templateNode;
+  }
+}
+
 class Function : ScopeSymbol
 {
   StorageClass stc;