blob: 5bd242d8f1c08dfd4d9c6e5e6eac4cf717810cdd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Servoy
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Servoy - initial API and Implementation (Johan Compagner)
*******************************************************************************/
package org.eclipse.dltk.javascript.typeinfo;
import java.util.Set;
import org.eclipse.dltk.annotations.Nullable;
import org.eclipse.dltk.javascript.typeinference.IValueReference;
import org.eclipse.dltk.javascript.typeinference.ReferenceLocation;
/**
* @author jcompagner
*/
public interface IRLocalType extends IRType, IRTypeExtension {
public static final String PROTOTYPE_PROPERTY = "prototype";
public IValueReference getValue();
@Nullable
public IValueReference getDirectChild(String name);
public ReferenceLocation getReferenceLocation();
public Set<String> getDirectChildren();
}