comparison trunk/src/dil/semantic/Symbols.d @ 747:00f872d949ea

Added method scanCommentText() to DDocEmitter. Added method writeParams() and scanCodeSection(). Added method scanMacro() to MacroParser. Made fixes and improvements to the MacroExpander. Applied other minor fixes.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Mon, 11 Feb 2008 03:15:45 +0100
parents efa5fcb9aa14
children f4b9680c0e16
comparison
equal deleted inserted replaced
746:32a8ddd330f8 747:00f872d949ea
22 this(SYM sid, Identifier* name, Node node) 22 this(SYM sid, Identifier* name, Node node)
23 { 23 {
24 super(sid, name, node); 24 super(sid, name, node);
25 } 25 }
26 26
27 /// Look up ident in the table. 27 /// Look up name in the table.
28 Symbol lookup(Identifier* name) 28 Symbol lookup(Identifier* name)
29 { 29 {
30 return symbolTable.lookup(name); 30 return symbolTable.lookup(name);
31 } 31 }
32 32