0

法典代码:

identifier [\._a-zA-Z0-9\/]+
comment "//"

<*>{comment}  {
    cout<<"Comment\n";
  char c;
  while((c= yyinput()) != '\n')
    {
    }
}

<INITIAL>{s}{e}{t} {
   BEGIN(SAMPLE_STATE);
   return SET;
}

<SAMPLE_STATE>{identifier} {
    strncpy(yylval.str, yytext,1023);
    yylval.str[1023] = '\0';
  return IDENTIFIER;
}

在上面的lex代码中,解析“// set name”时没有错误。请注意解析的句子中“//”后面的空格。但是,在解析“//set name”时,却报错。你能指出我哪里出错了吗?谢谢。

错误被捕获yyerror并报告

SampleParser.y:43: int CMTSTapTestSeq_yyerror(char*): Assertion `0 && "Error parsing Sample file\n"' failed. 

这个断言是我添加的。

4

1 回答 1

0

我认为您在简化示例时犯了一个错误,因为您提供的代码工作正常并且没有您指出的错误。我对其进行了编码并对其进行了测试(为方便起见,我使用C而不是 C++)。但是,我看到您发布了一个稍后的问题,其中包含更多更好地解释问题的代码。我也回答了那个。

s s
e e
t t
identifier [\._a-zA-Z0-9\/]+
comment "//"

%s SAMPLE_STATE

%{
//#include <iostream>
//using namespace std;
#include <stdio.h>
#define SET 1
#define IDENTIFIER 2
#define yyinput input
%}

%%
<*>{comment}  {
   // cout<<"Comment\n";
   printf("Comment\n");
  char c;
  while((c= yyinput()) != '\n')
    {
    }
}

<INITIAL>{s}{e}{t} {
   BEGIN(SAMPLE_STATE);
   //return SET;
   printf("SET\n");
}

<SAMPLE_STATE>{identifier} {
    //strncpy(yylval.str, yytext,1023);
    //yylval.str[1023] = '\0';
  //return IDENTIFIER;
  printf("identifier");
}

接受两者:

//set name
// set name
于 2015-04-23T08:50:48.167 回答