blob: b2d7d9c3f1cd2c1fc995e228a250f3538d79e42c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 NumberFour AG
*
* 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:
* NumberFour AG - initial API and Implementation (Alex Panchenko)
*******************************************************************************/
package org.eclipse.dltk.javascript.internal.core;
import java.util.List;
import org.eclipse.dltk.javascript.typeinfo.IRConstructor;
import org.eclipse.dltk.javascript.typeinfo.IRParameter;
import org.eclipse.dltk.javascript.typeinfo.IRType;
import org.eclipse.dltk.javascript.typeinfo.IRTypeDeclaration;
import org.eclipse.dltk.javascript.typeinfo.model.Method;
public class RConstructor extends RMethod implements IRConstructor {
public RConstructor(Method method, IRTypeDeclaration typeDeclaration) {
super(method, typeDeclaration);
}
public RConstructor(Method method, IRType type,
List<IRParameter> parameters, IRTypeDeclaration typeDeclaration) {
super(method, type, parameters, typeDeclaration);
}
}