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