Newer
Older
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
#include "lexeme-list.h"
#include <string.h>
#include "scm-mem.h"
// -------------------------------------------------------------------------------------------- //
// * Implementation *
// -------------------------------------------------------------------------------------------- //
scm::LexemeList::LexemeList()
{
size = 0;
nalloc = 0;
}
scm::LexemeList::~LexemeList()
{
clear();
}
scm::LexemeList::LexemeList(const LexemeList& list)
{
size = list.size;
if (size > 0) {
lexeme = new Lexeme[size];
for (int k = 0; k < size; k++)
lexeme[k] = list.lexeme[k];
}
nalloc = size;
}
// -------------------------------------------------------------------------------------------- //
// * swap & assignment * //
// -------------------------------------------------------------------------------------------- //
const scm::LexemeList& scm::LexemeList::operator=(LexemeList list)
{
swap(list);
return (*this);
}
void scm::LexemeList::swap(LexemeList& list)
{
scm::swap(lexeme, list.lexeme);
scm::swap(size, list.size);
scm::swap(nalloc, list.nalloc);
}
// -------------------------------------------------------------------------------------------- //
// * add calls * //
// -------------------------------------------------------------------------------------------- //
void scm::LexemeList::add(const char* token, const Lexeme::TYPE type, const int tag)
{
if (size == nalloc)
{
Lexeme *cp_list;
cp_list = new Lexeme[nalloc + c_nalloc_inc];
for (int k = 0; k < size; k++)
cp_list[k].swap(lexeme[k]);
if (nalloc > 0) delete[] lexeme;
lexeme = cp_list;
nalloc += c_nalloc_inc;
}
lexeme[size].set(token, type, tag);
size++;
}
void scm::LexemeList::add(const char* token, const Lexeme::TYPE type)
{
add(token, type, 0);
}
// -------------------------------------------------------------------------------------------- //
// * get calls * //
// -------------------------------------------------------------------------------------------- //
int scm::LexemeList::get_size() const
{
return size;
}
const scm::Lexeme scm::LexemeList::get_lexeme(const int idx) const
{
if ((idx < 0) || (idx >= size)) return Lexeme();
return lexeme[idx];
}
const char* scm::LexemeList::get_token(const int idx) const
{
if ((idx < 0) || (idx >= size)) return NULL;
return lexeme[idx].get_token();
}
scm::Lexeme::TYPE scm::LexemeList::get_type(const int idx) const
{
if ((idx < 0) || (idx >= size)) return Lexeme::IS_INVALID;
return lexeme[idx].get_type();
}
int scm::LexemeList::get_tag(const int idx) const
{
if ((idx < 0) || (idx >= size)) return 0;
return lexeme[idx].get_tag();
}
// -------------------------------------------------------------------------------------------- //
// * check lexeme type * //
// -------------------------------------------------------------------------------------------- //
bool scm::LexemeList::is_operator(const int idx) const
{
if ((idx < 0) || (idx >= size)) return false;
return lexeme[idx].is_operator();
}
bool scm::LexemeList::is_function(const int idx) const
{
if ((idx < 0) || (idx >= size)) return false;
return lexeme[idx].is_function();
}
bool scm::LexemeList::is_ctor(const int idx) const
{
if ((idx < 0) || (idx >= size)) return false;
return lexeme[idx].is_ctor();
}
bool scm::LexemeList::is_value(const int idx) const
{
if ((idx < 0) || (idx >= size)) return false;
return lexeme[idx].is_value();
}
// -------------------------------------------------------------------------------------------- //
// * clear & reset * //
// -------------------------------------------------------------------------------------------- //
void scm::LexemeList::clear()
{
if (nalloc > 0)
delete[] lexeme;
size = 0;
nalloc = 0;
}
void scm::LexemeList::reset()
{
size = 0;
}
// -------------------------------------------------------------------------------------------- //