MCPcopy Create free account
hub / github.com/antlr/codebuff / indent

Method indent

output/java/1.4.17/Interpreter.java:657–665  ·  view source on GitHub ↗
(STWriter out, InstanceScope scope, int strIndex)

Source from the content-addressed store, hash-verified

655 }
656
657 protected void indent(STWriter out, InstanceScope scope, int strIndex) {
658 String indent = scope.st.impl.strings[strIndex];
659 if ( debug ) {
660 int start = out.index(); // track char we're about to write
661 EvalExprEvent e = new IndentEvent(scope, start, start+indent.length()-1, getExprStartChar(scope), getExprStopChar(scope));
662 trackDebugEvent(scope, e);
663 }
664 out.pushIndentation(indent);
665 }
666
667 /** Write out an expression result that doesn't use expression options.
668 * E.g., {@code <name>}

Callers 1

_execMethod · 0.95

Calls 6

getExprStartCharMethod · 0.95
getExprStopCharMethod · 0.95
trackDebugEventMethod · 0.95
indexMethod · 0.65
pushIndentationMethod · 0.65
lengthMethod · 0.45

Tested by

no test coverage detected