Ignore:
Timestamp:
May 19, 2015, 4:58:14 PM (11 years ago)
Author:
Peter A. Buhr <pabuhr@…>
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:
843054c2
Parents:
01aeade
Message:

licencing: sixth groups of files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • translator/Parser/ExpressionNode.cc

    r01aeade ra08ba92  
    8181}
    8282
    83 CommaExprNode *ExpressionNode::add_to_list( ExpressionNode *exp ){
     83CommaExprNode *ExpressionNode::add_to_list( ExpressionNode *exp ) {
    8484        return new CommaExprNode( this, exp );
    8585}
     
    111111}
    112112
    113 void ConstantNode::classify( std::string &str ){
    114         switch ( type ){
     113void ConstantNode::classify( std::string &str ) {
     114        switch ( type ) {
    115115          case Integer:
    116116          case Float:
     
    130130                        std::transform( sfx.begin(), sfx.end(), sfx.begin(), tolower_hack );
    131131
    132                         if ( sfx.find("ll") != string::npos ){
     132                        if ( sfx.find("ll") != string::npos ) {
    133133                                longs = 2;
    134                         } else if ( sfx.find("l") != string::npos ){
     134                        } else if ( sfx.find("l") != string::npos ) {
    135135                                longs = 1;
    136136                        } // if
     
    163163ConstantNode *ConstantNode::append( std::string *newValue ) {
    164164        if ( newValue ) {
    165                 if ( type == String ){
     165                if ( type == String ) {
    166166                        std::string temp = *newValue;
    167167                        value.resize( value.size() - 1 );
     
    209209        BasicType *bt;
    210210
    211         switch ( get_type()){
     211        switch ( get_type()) {
    212212          case Integer:
    213213                /* Cfr. standard 6.4.4.1 */
     
    354354                return new UntypedExpr( function->build(), args, maybeBuild< Expression >( get_argName() ));
    355355        } else {
    356                 switch ( op->get_type()){
     356                switch ( op->get_type()) {
    357357                  case OperatorNode::Incr:
    358358                  case OperatorNode::Decr:
     
    563563}
    564564
    565 void CompositeExprNode::set_function( ExpressionNode *f ){
     565void CompositeExprNode::set_function( ExpressionNode *f ) {
    566566        function = f;
    567567}
    568568
    569 void CompositeExprNode::set_args( ExpressionNode *args ){
     569void CompositeExprNode::set_args( ExpressionNode *args ) {
    570570        arguments = args;
    571571}
     
    579579}
    580580
    581 void CompositeExprNode::add_arg( ExpressionNode *arg ){
     581void CompositeExprNode::add_arg( ExpressionNode *arg ) {
    582582        if ( arguments )
    583583                arguments->set_link( arg );
     
    594594}
    595595
    596 CommaExprNode *CommaExprNode::add_to_list( ExpressionNode *exp ){
     596CommaExprNode *CommaExprNode::add_to_list( ExpressionNode *exp ) {
    597597        add_arg( exp );
    598598
     
    646646}
    647647
    648 ForCtlExprNode::~ForCtlExprNode(){
     648ForCtlExprNode::~ForCtlExprNode() {
    649649        delete init;
    650650        delete condition;
Note: See TracChangeset for help on using the changeset viewer.