~ubuntu-branches/ubuntu/maverick/codelite/maverick

« back to all changes in this revision

Viewing changes to CxxParser/cpp_expr_parser.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2010-07-29 19:42:47 UTC
  • mfrom: (1.1.9 upstream) (18.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20100729194247-cuibfk03wog33nxq
Tags: 2.6.0.4189~dfsg-1
* New upstream release.
* Bump Standards.
* Refresh patches.
* Add license information about files under ./Debugger/

Show diffs side-by-side

added added

removed removed

Lines of Context:
731
731
{yyval = yyvsp[-2] + yyvsp[-1] + yyvsp[0];}
732
732
break;
733
733
case 26:
734
 
{yyval = yyvsp[-3] + " " + yyvsp[-2] + " " + yyvsp[-1] +yyvsp[0];}
 
734
{
 
735
                                                        if(yyvsp[-3].empty()) {
 
736
                                                                yyval = yyvsp[-2] + yyvsp[-1] +yyvsp[0];
 
737
                                                                
 
738
                                                        } else {
 
739
                                                                yyval = yyvsp[-3] + " " + yyvsp[-2] + yyvsp[-1] +yyvsp[0];
 
740
                                                        }
 
741
                                                }
735
742
break;
736
743
case 27:
737
 
{yyval = yyvsp[-3] + " " + yyvsp[-2] + " " + yyvsp[-1] +yyvsp[0];}
 
744
{
 
745
                                                        if(yyvsp[-3].empty()) {
 
746
                                                                yyval = yyvsp[-2] + yyvsp[-1] +yyvsp[0];
 
747
                                                                
 
748
                                                        } else {
 
749
                                                                yyval = yyvsp[-3] + " " + yyvsp[-2] + yyvsp[-1] +yyvsp[0];
 
750
                                                        }
 
751
                                                }
738
752
break;
739
753
case 28:
740
 
{yyval = yyvsp[-6] + " " + yyvsp[-5] + " " + yyvsp[-4] +yyvsp[-3] + yyvsp[-2] + yyvsp[-1];}
 
754
{
 
755
                                                        if(yyvsp[-6].empty()) {
 
756
                                                                yyval = yyvsp[-5] + yyvsp[-4] + yyvsp[-3] + yyvsp[-2] + yyvsp[-1] + " ";
 
757
                                                        } else {
 
758
                                                                yyval = yyvsp[-6] + " " + yyvsp[-5] + yyvsp[-4] + yyvsp[-3] + yyvsp[-2] + yyvsp[-1] + " ";
 
759
                                                        }
 
760
                                                }
741
761
break;
742
762
case 29:
743
763
{