blob: 882c11e4e37caa148d78aeb624d66aad53091707 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/**
** \file ast/seq-exp.hh
** \brief Declaration of ast::SeqExp.
*/
#pragma once
#include <ast/exp.hh>
namespace ast
{
/// SeqExp.
class SeqExp : public Exp
{
public:
/** \name Ctor & dtor.
** \{ */
/// Construct a SeqExp node.
SeqExp(const Location& location, exps_type* exps);
SeqExp(const SeqExp&) = delete;
SeqExp& operator=(const SeqExp&) = delete;
/// Destroy a SeqExp node.
~SeqExp() 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 list of expressions.
const exps_type& exps_get() const;
/// Return list of expressions.
exps_type& exps_get();
/** \} */
protected:
/// List of expressions.
exps_type* exps_;
};
} // namespace ast
#include <ast/seq-exp.hxx>
|