Changeset a7d50b6


Ignore:
Timestamp:
May 27, 2019, 11:09:49 AM (5 years ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
1259c35, 2c04369
Parents:
6f4b7f2
Message:

Removed trailing whitespace.

Location:
src/AST
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Print.cpp

    r6f4b7f2 ra7d50b6  
    132132                case ast::Expr::InferUnion::Empty: return;
    133133                case ast::Expr::InferUnion::Slots: {
    134                         os << indent << "with " << inferred.data.resnSlots.size() 
     134                        os << indent << "with " << inferred.data.resnSlots.size()
    135135                           << " pending inference slots" << endl;
    136136                        return;
     
    152152
    153153        void print( const ast::ParameterizedType::ForallList & forall ) {
    154                 if ( forall.empty() ) return;   
     154                if ( forall.empty() ) return;
    155155                os << "forall" << endl;
    156156                ++indent;
     
    178178        void print( const ast::AggregateDecl * node ) {
    179179                os << node->typeString() << " " << node->name;
    180                
     180
    181181                if ( ! short_mode && node->linkage != Linkage::Cforall ) {
    182182                        os << " " << Linkage::name( node->linkage );
    183183                }
    184                
     184
    185185                os << " " << (node->body ? "with" : "without") << " body";
    186186
     
    218218                print( node->storage );
    219219                os << node->typeString();
    220                
     220
    221221                if ( node->base ) {
    222222                        os << " for ";
     
    623623        virtual const ast::Stmt * visit( const ast::TryStmt * node ) {
    624624                ++indent;
    625                 os << "Try Statement" << endl << indent-1 
     625                os << "Try Statement" << endl << indent-1
    626626                   << "... with block:" << endl << indent;
    627627                safe_print( node->body );
     
    663663                safe_print( node->body );
    664664                --indent;
    665                
     665
    666666                return node;
    667667        }
     
    684684                        os << indent-1 << "target function: ";
    685685                        safe_print( clause.target.func );
    686                        
     686
    687687                        if ( ! clause.target.args.empty() ) {
    688688                                os << endl << indent-1 << "... with arguments:" << endl;
     
    800800                os << "Name: " << node->name;
    801801                postprint( node );
    802                
     802
    803803                return node;
    804804        }
     
    931931                --indent;
    932932                postprint( node );
    933                
     933
    934934                return node;
    935935        }
     
    10151015                if ( node->operand ) node->operand->accept( *this );
    10161016                --indent;
    1017                
     1017
    10181018                return node;
    10191019        }
     
    10931093                --indent;
    10941094                postprint( node );
    1095                
     1095
    10961096                return node;
    10971097        }
     
    12921292        virtual const ast::Type * visit( const ast::FunctionType * node ) {
    12931293                preprint( node );
    1294                
     1294
    12951295                os << "function" << endl;
    12961296                if ( ! node->params.empty() ) {
     
    13621362        virtual const ast::Type * visit( const ast::TypeInstType * node ) {
    13631363                preprint( node );
    1364                 os << "instance of type " << node->name 
     1364                os << "instance of type " << node->name
    13651365                   << " (" << (node->kind == ast::TypeVar::Ftype ? "" : "not ") << "function type)";
    13661366                print( node->params );
  • src/AST/Stmt.hpp

    r6f4b7f2 ra7d50b6  
    278278        ExceptionKind kind;
    279279
    280         ThrowStmt( 
     280        ThrowStmt(
    281281                const CodeLocation & loc, ExceptionKind kind, const Expr * expr, const Expr * target,
    282282                std::vector<Label> && labels = {} )
     
    296296        ptr<FinallyStmt> finally;
    297297
    298         TryStmt( 
     298        TryStmt(
    299299                const CodeLocation & loc, const CompoundStmt * body,
    300300                std::vector<ptr<CatchStmt>> && handlers, const FinallyStmt * finally,
     
    316316        ExceptionKind kind;
    317317
    318         CatchStmt( 
     318        CatchStmt(
    319319                const CodeLocation & loc, ExceptionKind kind, const Decl * decl, const Expr * cond,
    320320                const Stmt * body, std::vector<Label> && labels = {} )
Note: See TracChangeset for help on using the changeset viewer.