visitCatchClause method

Null visitCatchClause(
  1. CatchClause node
)
override

Implementation

visitCatchClause(CatchClause node) {
  node.environment = new Set<String>();
  node.environment.add(node.param.value);
  node.forEach(visit);
}