blob: bfa531e665eb6763d197645b09f1a03ce1006d0c (
plain) (
blame)
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
|
package submit;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
/*
* Code formatter project
* CS 4481
*/
public class SymbolTable {
private final HashMap<String, SymbolInfo> table;
private SymbolTable parent;
private final List<SymbolTable> children;
public SymbolTable() {
table = new HashMap<>();
parent = null;
children = new ArrayList<>();
}
public void addSymbol(String id, SymbolInfo symbol) { table.put(id, symbol); }
/**
* Returns null if no symbol with that id is in this symbol table or an
* ancestor table.
*
* @param id
* @return
*/
public SymbolInfo find(String id) {
if (table.containsKey(id)) {
return table.get(id);
}
if (parent != null) {
return parent.find(id);
}
return null;
}
/**
* Returns the new child.
*
* @return
*/
public SymbolTable createChild() {
SymbolTable child = new SymbolTable();
children.add(child);
child.parent = this;
return child;
}
public SymbolTable getParent() { return parent; }
}
|