-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGrammar.C
62 lines (38 loc) · 879 Bytes
/
Grammar.C
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
/****************************************************************
Grammar.C
This is open-source software, governed by the ARTISTIC LICENSE
(see www.opensource.org).
****************************************************************/
#include <iostream>
#include "Grammar.H"
using namespace std;
using namespace BOOM;
Grammar::Grammar()
{
// ctor
}
void Grammar::addProduction(Production *prod)
{
productions.push_back(prod);
}
int Grammar::numProductions() const
{
return productions.size();
}
Production *Grammar::getIthProduction(int i)
{
return productions[i];
}
Vector<Production*> &Grammar::getProductionsFor(GrammarSymbol *lhs)
{
return productionsByLHS[lhs];
}
GrammarAlphabet &Grammar::getTerminals()
{
return terminals;
}
GrammarAlphabet &Grammar::getNonterminals()
{
return nonterminals;
}