blob: 96ffeaec2044460601bd6b8b602e1c6337466a3e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 xored software, Inc.
*
* 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:
* xored software, Inc. - initial API and Implementation (Alex Panchenko)
*******************************************************************************/
package org.eclipse.dltk.internal.javascript.ti;
public interface IReferenceAttributes {
String METHOD = "METHOD"; //$NON-NLS-1$
String R_METHOD = "R_METHOD"; //$NON-NLS-1$
String LOCATION = "LOCATION"; //$NON-NLS-1$
String FUNCTION_SCOPE = "FUNCTION_SCOPE"; //$NON-NLS-1$
String ELEMENT = "ELEMENT"; //$NON-NLS-1$
String VARIABLE = "VARIABLE"; //$NON-NLS-1$s
String R_VARIABLE = "R_VARIABLE"; //$NON-NLS-1$s
String HIDE_ALLOWED = "HIDE_ALLOWED";
String RESOLVING = "RESOLVING";
String PHANTOM = "PHANTOM";
String ACCESS = IReferenceAttributes.class.getName() + "#ACCESS";
String LOCAL_TYPE_LOCATION = "LOCAL_TYPE_LOCATION";
}