addStmts method

void addStmts(
  1. List<Statement> stmts
)

Implementation

void addStmts(List<o.Statement> stmts) {
  if (stmts.isEmpty) return;
  _bodyStatements.addAll(stmts);
}