finish method

void finish()

Implementation

void finish() {
  if (rule.postprocess != null) {
    try {
      data = rule.postprocess(data);
    } catch (e) {
      throw new Exception(
        "Can't postprocess array: " + data.toString() + "\n" + e.toString(),
      );
    }
  }
}