setVariableCharacters method

Expression setVariableCharacters(
  1. String chars
)

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;
}