blob: 41fa490d34645f6271d5e7d0a8ccc0c9d387e407 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 xored software, Inc.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* xored software, Inc. - initial API and Implementation (Alex Panchenko)
*******************************************************************************/
package org.eclipse.dltk.ruby.ast;
import org.eclipse.dltk.ast.declarations.ModuleDeclaration;
public class FakeModuleDeclaration extends ModuleDeclaration {
/**
* @param sourceLength
* @param rebuildEnabled
*/
public FakeModuleDeclaration(int sourceLength, boolean rebuildEnabled) {
super(sourceLength, rebuildEnabled);
}
/**
* @param sourceLength
*/
public FakeModuleDeclaration(int sourceLength) {
super(sourceLength);
}
}