-
-
Save zdi-team/82ef48a18c23815208fe5e8bd0546559 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// found variable end marker | |
if (nestedVarCount == 0) { | |
String varNameExpr = new String(chars, startPos + startMatchLen, pos - startPos - startMatchLen); | |
if (substitutionInVariablesEnabled) { | |
final StringBuilder bufName = new StringBuilder(varNameExpr); | |
substitute(event, bufName, 0, bufName.length()); | |
varNameExpr = bufName.toString(); | |
} | |
pos += endMatchLen; | |
final int endPos = pos; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment