end method

Expression end()

End the current compound expression. @return Expression

Implementation

Expression end() {
  assert(mCurrent != null &&
      mCurrent!.parent != null); // "begin() needs to be called"
  mCurrent = mCurrent!.parent;
  return this;
}