MCPcopy Index your code
hub / github.com/antlr/codebuff / InterpEvent

Class InterpEvent

output/java8/1.4.17/InterpEvent.java:33–48  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31
32
33public 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected