add method

StringList add(
  1. String s
)

Adds a string to the StringList, returning the updated StringList.

this is returned for chaining.

Implementation

StringList add(String s) {
  _stack.push(s);
  return this;
}