comparison trunk/src/dil/doc/Parser.d @ 768:d84349a60f5c

Fixed IdentValueParser.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Sat, 16 Feb 2008 22:10:21 +0100
parents 8caf18892c1b
children 5e3ef1b2011c
comparison
equal deleted inserted replaced
767:1771398583fa 768:d84349a60f5c
39 textEnd = p + text.length; 39 textEnd = p + text.length;
40 40
41 IdentValue[] idvalues; 41 IdentValue[] idvalues;
42 42
43 string ident, nextIdent; 43 string ident, nextIdent;
44 char* bodyBegin, nextBodyBegin; 44 char* bodyBegin = p, nextBodyBegin;
45 45
46 // Init. 46 // Init.
47 findNextIdent(ident, bodyBegin); 47 findNextIdent(ident, bodyBegin);
48 // Continue. 48 // Continue.
49 while (findNextIdent(nextIdent, nextBodyBegin)) 49 while (findNextIdent(nextIdent, nextBodyBegin))