N
news.microsoft.com
Hi:
I work in Csharp's parser files by LEX/YACC.Now I have only CSharp-lex.l
and CSharp.y file,but they not have CSharp'comment Parse. this is a part of
CSharp-lex.l.
.....................
/***** Comments *****/
"/*" { yy_push_state(IN_COMMENT); }
<IN_COMMENT>. { ; /* ignore */ }
<IN_COMMENT>\n { ; /* ignore */ }
<IN_COMMENT>"*/" { yy_pop_state(); }
{single_line_comment} { ; /* ignore */ }
...................
CSharp.y file not have any more comment regular.
Now I need comment parser in CSharp-lex.l. and CSharp.y files. Who give me
the files?
THS
EKEY
05.1.31
I work in Csharp's parser files by LEX/YACC.Now I have only CSharp-lex.l
and CSharp.y file,but they not have CSharp'comment Parse. this is a part of
CSharp-lex.l.
.....................
/***** Comments *****/
"/*" { yy_push_state(IN_COMMENT); }
<IN_COMMENT>. { ; /* ignore */ }
<IN_COMMENT>\n { ; /* ignore */ }
<IN_COMMENT>"*/" { yy_pop_state(); }
{single_line_comment} { ; /* ignore */ }
...................
CSharp.y file not have any more comment regular.
Now I need comment parser in CSharp-lex.l. and CSharp.y files. Who give me
the files?
THS
EKEY
05.1.31