| 23 | } |
| 24 | |
| 25 | void das_checkName ( yyscan_t scanner, const string & name, const LineInfo &at ) { |
| 26 | if ( name.length()>=2 && name[0]=='_' && name[1]=='_' ) { |
| 27 | yyextra->g_Program->error("names starting with __ are reserved, " + name,"","",at,CompilationError::invalid_name); |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | void appendDimExpr ( TypeDecl * typeDecl, Expression * dimExpr ) { |
| 32 | if ( dimExpr ) { |
no test coverage detected