setVariableCharacters method
Sets the characters other than letters and digits that are valid as the second and subsequent characters of a variable.
chars
- The new set of variable characters.
Returns the expression, allows to chain methods.
Implementation
Expression setVariableCharacters(String chars) {
this._varChars = chars;
return this;
}