-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcallback.hpp
43 lines (37 loc) · 935 Bytes
/
callback.hpp
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
#pragma once
#include "callbacks.hpp"
/*
* Exception class
*/
class MismatchedType
{
};
class CallBack
{
public:
CallBack ();
virtual ~ CallBack ();
static void check_type (tree f);
virtual void check ();
//std::cerr << "base class" << std::endl;
static int finish_type_callback (CallBack * self, tree t);
/*
finish a declaration from the compiler callback
*/
static int finish_decl_callback (CallBack * self, tree t);
/*
finish a compilation unit
*/
static int finish_unit_callback (CallBack * self, tree t);
/**
* check node type in the base class always returns true because no type is specified.
* this method is designed to be called statically in the subclasses given a type expected and some node.
*/
static bool check_node (tree f)
{
return true;
}
virtual void finish_type (tree t);
virtual void finish_decl (tree t);
virtual void finish_unit (tree t);
};