author | Michael Krelin <hacker@klever.net> | 2005-03-31 13:27:36 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2005-03-31 13:27:36 (UTC) |
commit | ef14961fe10614eb15c71dd5b0b83f292bd7a5b0 (patch) (side-by-side diff) | |
tree | 2be43fc5d441070db94c6e9881948d6ba2a87b04 | |
parent | 9c755a29c43bcf4a3a1bbd55ae7e590fc6ff2e21 (diff) | |
download | sitecing-ef14961fe10614eb15c71dd5b0b83f292bd7a5b0.zip sitecing-ef14961fe10614eb15c71dd5b0b83f292bd7a5b0.tar.gz sitecing-ef14961fe10614eb15c71dd5b0b83f292bd7a5b0.tar.bz2 |
minor improvements to code aesthetics
-rw-r--r-- | lib/sitecing_parser.ll | 63 |
1 files changed, 33 insertions, 30 deletions
diff --git a/lib/sitecing_parser.ll b/lib/sitecing_parser.ll index 8ba8673..9514ce4 100644 --- a/lib/sitecing_parser.ll +++ b/lib/sitecing_parser.ll @@ -147,7 +147,7 @@ NOIDCHAR [^A-Za-z0-9_] <METHODLINE>{ {WHITESPACE}+ { - modus_operandi& m = modi.front(); + modus_operandi& m = M(); if(!m.output.empty()) { if(!m._lastid.empty()) { if(!m._type.empty()) m._type += ' '; @@ -158,7 +158,7 @@ NOIDCHAR [^A-Za-z0-9_] } } \* { - modus_operandi& m = modi.front(); + modus_operandi& m = M(); ECHO; if(!m._lastid.empty()) { if(!m._type.empty()) m._type += ' '; @@ -168,7 +168,7 @@ NOIDCHAR [^A-Za-z0-9_] m.output.clear(); } \( { - modus_operandi& m = modi.front(); + modus_operandi& m = M(); if(m.output.empty()) { m._name=m._lastid; }else{ @@ -185,7 +185,7 @@ NOIDCHAR [^A-Za-z0-9_] } <METHODARGS>{ \%\> { - modus_operandi& m = modi.front(); + modus_operandi& m = M(); m._args = m.output; m.output.clear(); anchor(); @@ -223,7 +223,7 @@ NOIDCHAR [^A-Za-z0-9_] <CODEMETHODLINE>{ {WHITESPACE}+ { - modus_operandi& m = modi.front(); + modus_operandi& m = M(); if(!m.output.empty()) { if(!m._lastid.empty()) { if(!m._type.empty()) m._type += ' '; @@ -234,7 +234,7 @@ NOIDCHAR [^A-Za-z0-9_] } } \* { - modus_operandi& m = modi.front(); + modus_operandi& m = M(); ECHO; if(!m._lastid.empty()) { if(!m._type.empty()) m._type += ' '; @@ -244,7 +244,7 @@ NOIDCHAR [^A-Za-z0-9_] m.output.clear(); } \( { - modus_operandi& m = modi.front(); + modus_operandi& m = M(); if(m.output.empty()) { m._name=m._lastid; }else{ @@ -261,7 +261,7 @@ NOIDCHAR [^A-Za-z0-9_] } <CODEMETHODARGS>{ \%\> { - modus_operandi& m = modi.front(); + modus_operandi& m = M(); m._args = m.output; m.output.clear(); m.flags=0; @@ -273,12 +273,13 @@ NOIDCHAR [^A-Za-z0-9_] <IMPORTLINE>{ {WHITESPACE}+ { } {ID} { - if(!modi.front()._name.empty()) + modus_operandi& m = M(); + if(!m._name.empty()) throw preprocessor_error(CODEPOINT,"syntax error",lineno()); - modi.front()._name = yytext; + m._name = yytext; } \= { - modi.front().output.clear(); + M().output.clear(); BEGIN(IMPORTCOMPONENT); } } @@ -306,12 +307,13 @@ NOIDCHAR [^A-Za-z0-9_] <IMPORTTYPELINE>{ {WHITESPACE}+ { } {ID} { - if(!modi.front()._name.empty()) + modus_operandi& m = M(); + if(!m._name.empty()) throw preprocessor_error(CODEPOINT,"syntax error",lineno()); - modi.front()._name = yytext; + m._name = yytext; } \= { - modi.front().output.clear(); + M().output.clear(); BEGIN(IMPORTTYPECOMPONENT); } } @@ -339,12 +341,13 @@ NOIDCHAR [^A-Za-z0-9_] <DERIVELINE>{ {WHITESPACE}+ { } {ID} { - if(!modi.front()._name.empty()) + modus_operandi& m = M(); + if(!m._name.empty()) throw preprocessor_error(CODEPOINT,"syntax_error",lineno()); - modi.front()._name = yytext; + m._name = yytext; } \= { - modi.front().output.clear(); + M().output.clear(); BEGIN(DERIVECOMPONENT); } } @@ -371,7 +374,7 @@ NOIDCHAR [^A-Za-z0-9_] <VARLINE>{ {WHITESPACE}+ { - modus_operandi& m = modi.front(); + modus_operandi& m = M(); if(!m.output.empty()) { if(!m._lastid.empty()) { if(!m._type.empty()) m._type += ' '; @@ -382,7 +385,7 @@ NOIDCHAR [^A-Za-z0-9_] } } \* { - modus_operandi& m = modi.front(); + modus_operandi& m = M(); ECHO; if(!m._lastid.empty()) { if(!m._type.empty()) m._type += ' '; @@ -392,7 +395,7 @@ NOIDCHAR [^A-Za-z0-9_] m.output.clear(); } \;|\n|\= { - modus_operandi& m = modi.front(); + modus_operandi& m = M(); if(m.output.empty()) { m._name=m._lastid; }else{ @@ -410,7 +413,7 @@ NOIDCHAR [^A-Za-z0-9_] } <VARINIT>{ \n { - modus_operandi& m = modi.front(); + modus_operandi& m = M(); string::size_type t = m.output.find_first_not_of(" \t"); if(t!=string::npos) m.output.erase(0,t); @@ -426,18 +429,18 @@ NOIDCHAR [^A-Za-z0-9_] } <DECLLINE>\n { ECHO; - decl += modi.front().output; + decl += M().output; modi.pop_front(); BEGIN(INITIAL); } <IMPLLINE>\n { ECHO; - impl += modi.front().output; + impl += M().output; modi.pop_front(); BEGIN(INITIAL); } <CLASSLINE>\n { - class_name = modi.front().output; + class_name = M().output; modi.pop_front(); BEGIN(INITIAL); } @@ -477,39 +480,39 @@ NOIDCHAR [^A-Za-z0-9_] <DECLBLOCK,IMPLBLOCK,CONSTRUCTOR,DESTRUCTOR,CODEMETHODBLOCK,METHODBLOCK,CODEBLOCK>{ \<\/\%decl\> { if(YY_START!=DECLBLOCK) throw preprocessor_error(CODEPOINT,"tags mismatch",lineno()); - decl += modi.front().output; + decl += M().output; modi.pop_front(); BEGIN(INITIAL); } \<\/\%impl\> { if(YY_START!=IMPLBLOCK) throw preprocessor_error(CODEPOINT,"tags mismatch",lineno()); - impl += modi.front().output; + impl += M().output; modi.pop_front(); BEGIN(INITIAL); } \<\/\%constructor\> { if(YY_START!=CONSTRUCTOR) throw preprocessor_error(CODEPOINT,"tags mismatch",lineno()); - member_functions.push_back(member_function("","","",modi.front().output)); + member_functions.push_back(member_function("","","",M().output)); have_constructor = true; modi.pop_front(); BEGIN(INITIAL); } \<\/\%destructor\> { if(YY_START!=DESTRUCTOR) throw preprocessor_error(CODEPOINT,"tags mismatch",lineno()); - member_functions.push_back(member_function("","~","",modi.front().output)); + member_functions.push_back(member_function("","~","",M().output)); modi.pop_front(); BEGIN(INITIAL); } \<\/\%codemethod\> { if(YY_START!=CODEMETHODBLOCK) throw preprocessor_error(CODEPOINT,"tags mismatch",lineno()); - modus_operandi& m = modi.front(); + modus_operandi& m = M(); member_functions.push_back(member_function(m._type,m._name,m._args,m.output)); modi.pop_front(); BEGIN(INITIAL); } \<\/%method\> { if(YY_START!=METHODBLOCK) throw preprocessor_error(CODEPOINT,"tags mismatch",lineno()); - modus_operandi& m = modi.front(); + modus_operandi& m = M(); m.modify(modus_operandi::modus_code); member_functions.push_back(member_function(m._type,m._name,m._args,m.output)); modi.pop_front(); |