(List<Action> actions, List<Error> markers)
| 67 | public final Error[] markers; |
| 68 | |
| 69 | public Frame(List<Action> actions, List<Error> markers) { |
| 70 | this.actions = actions.toArray(new Action[actions.size()]); |
| 71 | this.markers = markers.toArray(new Error[markers.size()]); |
| 72 | } |
| 73 | |
| 74 | public void apply(Map<Trie,TextFile> state) { |
| 75 | for(Action a : actions) { |