errors.cc

Go to the documentation of this file.
00001 /*
00002    The lestes compiler suite
00003    Copyright (C) 2002, 2003, 2004, 2005 Miroslav Tichy
00004    Copyright (C) 2002, 2003, 2004, 2005 Petr Zika
00005    Copyright (C) 2002, 2003, 2004, 2005 Vojtech Hala
00006    Copyright (C) 2002, 2003, 2004, 2005 Jiri Kosina
00007    Copyright (C) 2002, 2003, 2004, 2005 Pavel Sanda
00008    Copyright (C) 2002, 2003, 2004, 2005 Jan Zouhar
00009    Copyright (C) 2002, 2003, 2004, 2005 Rudolf Thomas
00010 
00011    This program is free software; you can redistribute it and/or modify
00012    it under the terms of the GNU General Public License as published by
00013    the Free Software Foundation; version 2 of the License.
00014 
00015    This program is distributed in the hope that it will be useful,
00016    but WITHOUT ANY WARRANTY; without even the implied warranty of
00017    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00018    GNU General Public License for more details.
00019 
00020    See the full text of the GNU General Public License version 2, and
00021    the limitations in the file doc/LICENSE.
00022 
00023    By accepting the license the licensee waives any and all claims
00024    against the copyright holder(s) related in whole or in part to the
00025    work, its use, and/or the inability to use it.
00026  
00027  */
00028 #include <lestes/lang/cplus/syn/errors.hh>
00029 #include <lestes/lang/cplus/syn/errors.m.hh>
00030 #include <lestes/lang/cplus/syn/token.hh>
00031 
00032 package(lestes);
00033 package(lang);
00034 package(cplus);
00035 package(syn);
00036 
00037 void syntax_error::disa_stmt( ptr<bison_pack_token> error_pack,
00038                 ptr<source_location> suberr_loc1, ptr<source_location> suberr_loc2 )
00039 {
00040 #if OLD_ERROR_WANTED
00041         ptr<source_location> at_loc = error_pack->location_get();
00042         report << disa_failed << at_loc;
00043         if (suberr_loc1->order_get() != at_loc->order_get())
00044                 report << sub_error << suberr_loc1;
00045         if (suberr_loc2->order_get() != at_loc->order_get() &&
00046                         suberr_loc2->order_get() != suberr_loc1->order_get())
00047                 report << sub_error << suberr_loc2;
00048 #else
00049         report << disa_failed << suberr_loc1;
00050         if (suberr_loc2->order_get() != suberr_loc1->order_get())
00051                 report << or_here << suberr_loc2;
00052 #endif
00053         report << cont_here << error_pack->end_location_get();
00054 }
00055 
00056 void syntax_error::condition( ptr<bison_pack_token> error_pack,
00057                 ptr<source_location> suberr_loc1, ptr<source_location> suberr_loc2 )
00058 {
00059         /* if the pack is empty, the condition "body" was empty, report it
00060          * note that in for statement -- where empty conditions are allowed -- we handle
00061          *   this case without running disambiguation, which means that this method
00062          *   is not called then
00063          */
00064         if (error_pack->pack_get()->empty())
00065                 report << empty_condition << error_pack->location_get();
00066         else {
00067                 report << invalid_cond << suberr_loc1;
00068                 if (suberr_loc2->order_get() != suberr_loc1->order_get())
00069                         report << or_here << suberr_loc2;
00070         }
00071 }
00072 
00073 end_package(syn);
00074 end_package(cplus);
00075 end_package(lang);
00076 end_package(lestes);

Generated on Mon Feb 12 18:22:33 2007 for lestes by doxygen 1.5.1-20070107