| 19 | } |
| 20 | |
| 21 | void das_yyerror ( yyscan_t scanner, const string & error, const LineInfo & at, CompilationError cerr ) { |
| 22 | yyextra->g_Program->error(error,"","",at,cerr); |
| 23 | } |
| 24 | |
| 25 | void das_checkName ( yyscan_t scanner, const string & name, const LineInfo &at ) { |
| 26 | if ( name.length()>=2 && name[0]=='_' && name[1]=='_' ) { |
no test coverage detected