Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/ParseNode.h

    r8cc5cb0 r321f55d  
    1010// Created On       : Sat May 16 13:28:16 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Thu Aug 11 12:24:11 2016
    13 // Update Count     : 443
     12// Last Modified On : Wed Aug 10 21:51:49 2016
     13// Update Count     : 437
    1414//
    1515
     
    363363        // StatementNode *add_controlexp( ExpressionNode * );
    364364        StatementNode *append_block( StatementNode * );
    365         virtual StatementNode *append_last_case( StatementNode * );
     365        StatementNode *append_last_case( StatementNode * );
    366366
    367367        void print( std::ostream &os, int indent = 0) const;
     
    392392                return this;
    393393        }
    394         virtual StatementNode *append_last_case( StatementNode * );
    395394        virtual std::list<std::string> get_labels() const { assert( false ); return StatementNode::get_labels(); }
    396395
     
    412411};
    413412
    414 Statement *build_expr( ExpressionNode *ctl );
    415413Statement *build_if( ExpressionNode *ctl, StatementNode *then_stmt, StatementNode *else_stmt );
    416414Statement *build_switch( ExpressionNode *ctl, StatementNode *stmt );
    417 Statement *build_case( ExpressionNode *ctl );
    418 Statement *build_default();
    419415Statement *build_while( ExpressionNode *ctl, StatementNode *stmt, bool kind = false );
    420416Statement *build_for( ForCtl *forctl, StatementNode *stmt );
    421417Statement *build_branch( std::string identifier, BranchStmt::Type kind );
    422 Statement *build_computedgoto( ExpressionNode *ctl );
    423 Statement *build_return( ExpressionNode *ctl );
    424 Statement *build_throw( ExpressionNode *ctl );
     418Statement *build_case( ExpressionNode *ctl );
     419Statement *build_default();
    425420
    426421//##############################################################################
Note: See TracChangeset for help on using the changeset viewer.