org.eclipse.jdt.internal.compiler.lookup.AptSourceLocalVariableBinding Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ecj Show documentation
Show all versions of ecj Show documentation
Eclipse Compiler for Java(TM)
/*******************************************************************************
* Copyright (c) 2009, 2015 IBM Corporation and others.
*
* 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
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.compiler.lookup;
public class AptSourceLocalVariableBinding extends LocalVariableBinding {
// enclosing element
public MethodBinding methodBinding;
private LocalVariableBinding local;
public AptSourceLocalVariableBinding(LocalVariableBinding localVariableBinding, MethodBinding methodBinding) {
super(localVariableBinding.name, localVariableBinding.type, localVariableBinding.modifiers, true);
this.constant = localVariableBinding.constant;
this.declaration = localVariableBinding.declaration;
this.declaringScope = localVariableBinding.declaringScope;
this.id = localVariableBinding.id;
this.resolvedPosition = localVariableBinding.resolvedPosition;
this.tagBits = localVariableBinding.tagBits;
this.useFlag = localVariableBinding.useFlag;
this.initializationCount = localVariableBinding.initializationCount;
this.initializationPCs = localVariableBinding.initializationPCs;
this.methodBinding = methodBinding;
this.local = localVariableBinding;
}
@Override
public AnnotationBinding[] getAnnotations() {
return this.local.getAnnotations();
}
}