blob: 2a357d6d7ccbeff9e996a7872ebedff82ab6a4fa [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 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.parser;
import org.eclipse.jdt.internal.compiler.ast.ASTNode;
import org.eclipse.jdt.internal.compiler.ast.ModuleReference;
public class RecoveredModuleReference extends RecoveredElement {
public ModuleReference moduleReference;
public RecoveredModuleReference(ModuleReference moduleReference, RecoveredElement parent, int bracketBalance){
super(parent, bracketBalance);
this.moduleReference = moduleReference;
}
/*
* Answer the associated parsed structure
*/
@Override
public ASTNode parseTree(){
return this.moduleReference;
}
/*
* Answer the very source end of the corresponding parse node
*/
@Override
public int sourceEnd(){
return this.moduleReference.sourceEnd;
}
@Override
public String toString(int tab) {
return tabString(tab) + "Recovered ModuleReference: " + this.moduleReference.toString(); //$NON-NLS-1$
}
public ModuleReference updatedModuleReference(){
return this.moduleReference;
}
@Override
public void updateParseTree(){
updatedModuleReference();
}
/*
* Update the declarationSourceEnd of the corresponding parse node
*/
//public void updateSourceEndIfNecessary(int bodyStart, int bodyEnd){
// if (this.moduleReference.declarationSourceEnd == 0) {
// this.moduleReference.declarationSourceEnd = bodyEnd;
// this.moduleReference.declarationEnd = bodyEnd;
// }
//}
}