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