blob: 2b500b4744b675a2905f169c4f54733fb72d8e80 [file] [log] [blame]
/**********************************************************************
* This file is part of "Object Teams Development Tooling"-Software
*
* Copyright 2003, 2015 Fraunhofer Gesellschaft, Munich, Germany,
* for its Fraunhofer Institute for Computer Architecture and Software
* Technology (FIRST), Berlin, Germany and Technical University Berlin,
* Germany.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
* $Id: BlockScopeWrapper.java 23416 2010-02-03 19:59:31Z stephan $
*
* Please visit http://www.eclipse.org/objectteams for updates and contact.
*
* Contributors:
* Fraunhofer FIRST - Initial API and implementation
* Technical University Berlin - Initial API and implementation
**********************************************************************/
package org.eclipse.objectteams.otdt.internal.core.compiler.problem;
import org.eclipse.jdt.internal.compiler.lookup.BlockScope;
import org.eclipse.jdt.internal.compiler.lookup.LocalVariableBinding;
import org.eclipse.jdt.internal.compiler.problem.ProblemReporter;
/**
* Special Scope for special AST elements, e.g. wrapped MessageSends,
* wrapping a normal scope.
* Necessary for catching and redirectoring error-reports to a special ProblemReporter
* taking care that the error-reports do not point to a generated method, but
* e.g. to a calling binding.
*
* @author carp
*/
public class BlockScopeWrapper extends BlockScope
{
private ProblemReporterWrapper _problemWrapper = null;
private IProblemReporterWrapperFactory _problemReporterFactory = null;
public BlockScopeWrapper(BlockScope parentScope, IProblemReporterWrapperFactory factory)
{
super(parentScope);
this._problemReporterFactory = factory;
}
/*
* create a special problem reporter
* @return a problem-reporter wrapper
*/
@Override
public ProblemReporter problemReporter()
{
// a new instance for each problem for setting referenceContext.
this._problemWrapper = this._problemReporterFactory.create(super.problemReporter());
return this._problemWrapper;
}
@Override
public void addLocalVariable(LocalVariableBinding binding) {
// block needs to find its locals in CodeStream.exitUserScope()
((BlockScope) this.parent).addLocalVariable(binding);
}
}