Changeset eb779d5 for src/AST/Print.cpp


Ignore:
Timestamp:
Oct 9, 2023, 12:55:09 PM (9 months ago)
Author:
caparsons <caparson@…>
Branches:
master
Children:
26dfce5
Parents:
0d49efb
Message:

Implemented corun statement

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Print.cpp

    r0d49efb reb779d5  
    922922        }
    923923
     924    virtual const ast::Stmt * visit( const ast::CorunStmt * node ) override final {
     925                os << "Corun Statement" << endl;
     926                os << indent << "... with Statement: ";
     927                ++indent;
     928                safe_print( node->stmt );
     929                --indent;
     930                os << endl;
     931
     932                return node;
     933        }
     934
    924935        virtual const ast::Expr * visit( const ast::ApplicationExpr * node ) override final {
    925936                ++indent;
Note: See TracChangeset for help on using the changeset viewer.