blob: 92f1281b598f3e609fc90854333d0559acb385b7 [file] [log] [blame]
/*
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package org.apache.royale.compiler.internal.definitions.references;
import org.apache.royale.abc.semantics.Name;
import org.apache.royale.abc.semantics.Namespace;
import org.apache.royale.abc.semantics.Nsset;
import org.apache.royale.compiler.common.DependencyType;
import org.apache.royale.compiler.definitions.IDefinition;
import org.apache.royale.compiler.definitions.INamespaceDefinition;
import org.apache.royale.compiler.definitions.references.IReferenceMName;
import org.apache.royale.compiler.internal.definitions.NamespaceDefinition;
import org.apache.royale.compiler.internal.scopes.ASScope;
import org.apache.royale.compiler.projects.ICompilerProject;
import org.apache.royale.compiler.scopes.IASScope;
import java.util.ArrayList;
import java.util.Set;
import static org.apache.royale.abc.ABCConstants.CONSTANT_Multiname;
/**
* Implementation of {@link IReference} representing a simple, unqualified
* reference from a source file such as the type annotation in
* <code>var x:String</code>.
*/
public class LexicalReference implements IReferenceMName
{
/**
* Constructor.
*/
public LexicalReference(String name)
{
this.name = name;
}
private final String name;
@Override
public String getName()
{
return name;
}
public Set<INamespaceDefinition> getNamespaceSet(ICompilerProject project, IASScope scope)
{
return ((ASScope)scope).getNamespaceSetForName(project, getName());
}
@Override
public IDefinition resolve(ICompilerProject project, IASScope scope,
DependencyType depencencyType,
boolean canEscapeWith)
{
return ((ASScope)scope).findProperty(project, getName(), depencencyType, canEscapeWith);
}
@Override
public String getDisplayString()
{
return name; //To change body of implemented methods use File | Settings | File Templates.
}
@Override
public Name getMName(ICompilerProject project, IASScope scope)
{
Name n = null;
Set<INamespaceDefinition> namespaceSet = ((ASScope)scope).getNamespaceSetForName(project, name);
ArrayList<Namespace> ns_set = new ArrayList<Namespace>(namespaceSet.size());
for (INamespaceDefinition namespace : namespaceSet)
ns_set.add(((NamespaceDefinition)namespace).resolveAETNamespace(project));
n = new Name(CONSTANT_Multiname, new Nsset(ns_set), name);
return n;
}
/**
* For debugging only.
*/
@Override
public String toString()
{
return getName();
}
}