| 31 | |
| 32 | |
| 33 | public class InterpEvent { |
| 34 | public InstanceScope scope; |
| 35 | /** Index of first char into output stream. */ |
| 36 | public final int outputStartChar; |
| 37 | /** Index of last char into output stream (inclusive). */ |
| 38 | public final int outputStopChar; |
| 39 | |
| 40 | public InterpEvent(InstanceScope scope, int outputStartChar, int outputStopChar) { |
| 41 | this.scope = scope; |
| 42 | this.outputStartChar = outputStartChar; |
| 43 | this.outputStopChar = outputStopChar; |
| 44 | } |
| 45 | |
| 46 | @Override |
| 47 | public String toString() { return getClass().getSimpleName()+"{"+"self="+scope.st+", start="+outputStartChar+", stop="+outputStopChar+'}'; } |
| 48 | } |
nothing calls this directly
no outgoing calls
no test coverage detected