Changeset 6e1e2d0 for src/AST/Print.cpp


Ignore:
Timestamp:
May 1, 2023, 4:19:09 PM (14 months ago)
Author:
caparsons <caparson@…>
Branches:
ADT, ast-experimental, master
Children:
c083c3d
Parents:
a50fdfb (diff), 985b624 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

resolved merge conflicts

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Print.cpp

    ra50fdfb r6e1e2d0  
    766766        virtual const ast::Stmt * visit( const ast::SuspendStmt * node ) override final {
    767767                os << "Suspend Statement";
    768                 switch (node->type) {
    769                         case ast::SuspendStmt::None     : os << " with implicit target"; break;
    770                         case ast::SuspendStmt::Generator: os << " for generator"; break;
    771                         case ast::SuspendStmt::Coroutine: os << " for coroutine"; break;
     768                switch (node->kind) {
     769                case ast::SuspendStmt::None     : os << " with implicit target"; break;
     770                case ast::SuspendStmt::Generator: os << " for generator"; break;
     771                case ast::SuspendStmt::Coroutine: os << " for coroutine"; break;
    772772                }
    773773                os << endl;
Note: See TracChangeset for help on using the changeset viewer.