Changeset 269 for trunk/dparser/dparse.d
- Timestamp:
- 03/28/08 19:23:31 (8 months ago)
- Files:
-
- trunk/dparser/dparse.d (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/dparser/dparse.d
r268 r269 1276 1276 static const char[] nameIs = rule.Name; 1277 1277 //debug(dParse_light) 1278 pragma(msg, "<used>"~nameIs~"</used>");1278 //pragma(msg, "<used>"~nameIs~"</used>"); 1279 1279 1280 1280 Stack!(Frame) backups; … … 1342 1342 // get one 1343 1343 debug(dparse_verbose) pragma(msg, "\t\t\t recurse in from \""~rule.Name~"\" on \""~cl.Text~\"\n); 1344 alias DotAction!(nameIs, cl.Text) _;1344 //alias DotAction!(nameIs, cl.Text) _; 1345 1345 auto tmpStore1 = parserBase.Terminal!(cl.Text)(p); 1346 1346 assert(tmpStore1 !is null); … … 1399 1399 1400 1400 debug(dparse_verbose) pragma(msg, "\t\t\trecurse in from \""~rule.Name~"\" on \""~cl.Text~\"\n); 1401 alias DotAction!(nameIs, cl.Text)_;1401 //alias DotAction!(nameIs, cl.Text) __; 1402 1402 auto tmpStore2 = parserBase.Terminal!(cl.Text)(p); 1403 1403 assert(tmpStore2 ! is null);
