summaryrefslogtreecommitdiff
path: root/tiger-compiler/src/ast/class-ty.hh
diff options
context:
space:
mode:
Diffstat (limited to 'tiger-compiler/src/ast/class-ty.hh')
-rw-r--r--tiger-compiler/src/ast/class-ty.hh55
1 files changed, 55 insertions, 0 deletions
diff --git a/tiger-compiler/src/ast/class-ty.hh b/tiger-compiler/src/ast/class-ty.hh
new file mode 100644
index 0000000..0045685
--- /dev/null
+++ b/tiger-compiler/src/ast/class-ty.hh
@@ -0,0 +1,55 @@
+/**
+ ** \file ast/class-ty.hh
+ ** \brief Declaration of ast::ClassTy.
+ */
+
+#pragma once
+
+#include <ast/chunk-list.hh>
+#include <ast/name-ty.hh>
+#include <ast/ty.hh>
+
+namespace ast
+{
+ /// ClassTy.
+ class ClassTy : public Ty
+ {
+ public:
+ /** \name Ctor & dtor.
+ ** \{ */
+ /// Construct a ClassTy node.
+ ClassTy(const Location& location, NameTy* super, ChunkList* chunks);
+ ClassTy(const ClassTy&) = delete;
+ ClassTy& operator=(const ClassTy&) = delete;
+ /// Destroy a ClassTy node.
+ ~ClassTy() override;
+ /** \} */
+
+ /// \name Visitors entry point.
+ /// \{ */
+ /// Accept a const visitor \a v.
+ void accept(ConstVisitor& v) const override;
+ /// Accept a non-const visitor \a v.
+ void accept(Visitor& v) override;
+ /// \}
+
+ /** \name Accessors.
+ ** \{ */
+ /// Return super class.
+ const NameTy& super_get() const;
+ /// Return super class.
+ NameTy& super_get();
+ /// Return list of declarations.
+ const ChunkList& chunks_get() const;
+ /// Return list of declarations.
+ ChunkList& chunks_get();
+ /** \} */
+
+ protected:
+ /// Super class.
+ NameTy* super_;
+ /// List of declarations.
+ ChunkList* chunks_;
+ };
+} // namespace ast
+#include <ast/class-ty.hxx>