MCPcopy Create free account
hub / github.com/acsoto/BUAA-Compiler / Exps

Class Exps

src/Exps.java:3–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import java.util.ArrayList;
2
3public class Exps {
4 private ArrayList<ArrayList<Word>> words;
5 private ArrayList<Word> symbols;
6
7 public Exps(ArrayList<ArrayList<Word>> words, ArrayList<Word> symbols) {
8 this.words = words;
9 this.symbols = symbols;
10 }
11
12 public ArrayList<ArrayList<Word>> getWords() {
13 return words;
14 }
15
16 public ArrayList<Word> getSymbols() {
17 return symbols;
18 }
19
20}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected