Changeset a8541d9 for src/Parser
- Timestamp:
- Jun 11, 2015, 1:31:07 PM (11 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, string, with_gc
- Children:
- ea9b9d3
- Parents:
- bfbf97f (diff), cda48b6 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- src/Parser
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/parser.cc
rbfbf97f ra8541d9 9272 9272 std::cout << "in file " << yyfilename << " "; 9273 9273 } // if 9274 // std::cout << "at line " << yylineno << " reading token \"" << *(yylval.tok.str) << "\"" << std::endl; 9275 std::cout << "at line " << yylineno << " reading token \"" << yytext << "\"" << std::endl; 9274 std::cout << "at line " << yylineno << " reading token \"" << (yytext[0] == '\0' ? "EOF" : yytext) << "\"" << std::endl; 9276 9275 } 9277 9276 -
src/Parser/parser.yy
rbfbf97f ra8541d9 10 10 // Created On : Sat Sep 1 20:22:55 2001 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Jun 10 14:22:15201513 // Update Count : 10 3912 // Last Modified On : Wed Jun 10 20:31:54 2015 13 // Update Count : 1040 14 14 // 15 15 … … 2723 2723 std::cout << "in file " << yyfilename << " "; 2724 2724 } // if 2725 std::cout << "at line " << yylineno << " reading token \"" << yytext<< "\"" << std::endl;2725 std::cout << "at line " << yylineno << " reading token \"" << (yytext[0] == '\0' ? "EOF" : yytext) << "\"" << std::endl; 2726 2726 } 2727 2727
Note:
See TracChangeset
for help on using the changeset viewer.