(ArrayList<ArrayList<Word>> words, ArrayList<Word> symbols)
| 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; |
nothing calls this directly
no outgoing calls
no test coverage detected