Changes in src/AST/Decl.hpp [af746cc:85855b0]
- File:
-
- 1 edited
-
src/AST/Decl.hpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Decl.hpp
raf746cc r85855b0 75 75 bool isDeleted = false; 76 76 bool isTypeFixed = false; 77 bool isHidden = false; 77 78 78 79 DeclWithType( const CodeLocation& loc, const std::string& name, Storage::Classes storage, … … 313 314 ptr<Type> base; 314 315 enum class EnumHiding { Visible, Hide } hide; 316 std::vector< ast::ptr<ast::EnumInstType>> inlinedDecl; // child enums 317 315 318 EnumDecl( const CodeLocation& loc, const std::string& name, bool isTyped = false, 316 319 std::vector<ptr<Attribute>>&& attrs = {}, Linkage::Spec linkage = Linkage::Cforall, … … 328 331 329 332 const std::string getUnmangeldArrayName( const EnumAttribute attr ) const; 333 334 unsigned calChildOffset(const std::string & childEnum) const; 335 unsigned calChildOffset(const ast::EnumInstType * childEnum) const; 336 337 bool isSubTypeOf(const ast::EnumDecl *) const; 330 338 private: 331 339 EnumDecl * clone() const override { return new EnumDecl{ *this }; }
Note:
See TracChangeset
for help on using the changeset viewer.