blob: c4eccbb359f93f5eef33a0fe8c0c3af1b5d61ea1 (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
/**
** \file ast/object-visitor.hxx
** \brief Implementation for ast/object-visitor.hh.
*/
#pragma once
#include <ast/all.hh>
#include <ast/object-visitor.hh>
#include <misc/contract.hh>
namespace ast
{
template <template <typename> class Const>
GenObjectVisitor<Const>::GenObjectVisitor()
: GenVisitor<Const>()
{}
template <template <typename> class Const>
GenObjectVisitor<Const>::~GenObjectVisitor()
{}
/*-------------------------------.
| Object-related visit methods. |
`-------------------------------*/
template <template <typename> class Const>
void GenObjectVisitor<Const>::operator()(const_t<ClassTy>& e)
{
// FIXME DONE: Some code was deleted here.
e.chunks_get().accept(*this);
}
template <template <typename> class Const>
void GenObjectVisitor<Const>::operator()(const_t<MethodChunk>& e)
{
// FIXME DONE: Some code was deleted here.
for (const auto dec : e)
dec->accept(*this);
}
template <template <typename> class Const>
void GenObjectVisitor<Const>::operator()(const_t<MethodDec>& e)
{
// FIXME DONE: Some code was deleted here.
e.formals_get().accept(*this);
if (e.result_get() != nullptr)
e.result_get()->accept(*this);
if (e.body_get() != nullptr)
e.body_get()->accept(*this);
}
template <template <typename> class Const>
void GenObjectVisitor<Const>::operator()(const_t<MethodCallExp>& e)
{
// FIXME DONE: Some code was deleted here.
e.object_get().accept(*this);
for (auto arg : e.args_get())
arg->accept(*this);
}
template <template <typename> class Const>
void GenObjectVisitor<Const>::operator()(const_t<ObjectExp>& e)
{
// FIXME DONE: Some code was deleted here.
e.type_name_get().accept(*this);
}
} // namespace ast
|