blob: b17708e18b463290c99ed24af7b2ec72c3486718 [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.codeassist.complete;
import org.eclipse.jdt.internal.compiler.CompilationResult;
import org.eclipse.jdt.internal.compiler.ast.ModuleDeclaration;
public class CompletionOnModuleDeclaration extends ModuleDeclaration {
public CompletionOnModuleDeclaration(CompilationResult compilationResult, char[][] tokens, long[] positions) {
super(compilationResult, tokens, positions);
}
}