comparison trunk/src/dil/parser/Parser.d @ 749:7db35977b947

Fixed loop bug.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Mon, 11 Feb 2008 17:58:46 +0100
parents efd87fdb1c00
children 40a52ea29e3b
comparison
equal deleted inserted replaced
748:efd87fdb1c00 749:7db35977b947
3769 auto params = new Parameters(); 3769 auto params = new Parameters();
3770 3770
3771 if (skipped(T.RParen)) 3771 if (skipped(T.RParen))
3772 return set(params, begin); 3772 return set(params, begin);
3773 3773
3774 while (1) 3774 do
3775 { 3775 {
3776 auto paramBegin = token; 3776 auto paramBegin = token;
3777 StorageClass stc, stc_; 3777 StorageClass stc, stc_;
3778 Type type; 3778 Type type;
3779 Identifier* ident; 3779 Identifier* ident;