Lines Matching refs:catch_info
5882 CatchInfo catch_info(this);
5899 catch_info.scope = NewScope(CATCH_SCOPE);
5900 catch_info.scope->set_start_position(scanner()->location().beg_pos);
5903 BlockState catch_block_state(&scope_, catch_info.scope);
5915 catch_info.variable = impl()->DeclareCatchVariableName(
5916 catch_info.scope, identifier);
5918 catch_info.variable = catch_info.scope->DeclareCatchVariableName(
5925 catch_info.pattern = ParseBindingPattern();
5935 catch_statements.Add(impl()->RewriteCatchPattern(&catch_info));
5948 if (impl()->IsNull(catch_info.pattern)) {
5949 const AstRawString* name = catch_info.variable->raw_name();
5967 catch_info.scope->set_end_position(end_position());
5986 finally_block, finally_range, catch_info,