Changeset 94c98f0e for src/AST/Decl.hpp


Ignore:
Timestamp:
Apr 11, 2023, 3:51:31 PM (18 months ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
ADT, ast-experimental, master
Children:
153d3440
Parents:
b05beaa
Message:

Added/cleaned some AST comments.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Decl.hpp

    rb05beaa r94c98f0e  
    316316public:
    317317        bool isTyped; // isTyped indicated if the enum has a declaration like:
    318         // enum (type_optional) Name {...} 
     318        // enum (type_optional) Name {...}
    319319        ptr<Type> base; // if isTyped == true && base.get() == nullptr, it is a "void" type enum
    320320        enum class EnumHiding { Visible, Hide } hide;
     
    374374};
    375375
     376/// Assembly declaration: `asm ... ( "..." : ... )`
    376377class AsmDecl : public Decl {
    377378public:
Note: See TracChangeset for help on using the changeset viewer.