Changeset 0522ebe for src/AST/Print.cpp


Ignore:
Timestamp:
Feb 26, 2024, 3:49:23 AM (7 months ago)
Author:
JiadaL <j82liang@…>
Branches:
master
Children:
a4da45e
Parents:
c17dc80
Message:

Add EnumPosType? to type system

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Print.cpp

    rc17dc80 r0522ebe  
    15761576        }
    15771577
     1578        virtual const ast::Type * visit( const ast::EnumPosType * node ) override final {
     1579                preprint( node );
     1580                os << "enum pos with ";
     1581                (*(node->instance)).accept( *this );
     1582                return node;
     1583        }
     1584
    15781585        virtual const ast::Type * visit( const ast::TraitInstType * node ) override final {
    15791586                preprint( node );
Note: See TracChangeset for help on using the changeset viewer.