use of org.eclipse.xtend.core.xtend.XtendFile in project xtext-xtend by eclipse.
the class XtendImportedNamespaceScopeProvider method getXtendFile.
protected XtendFile getXtendFile(final EObject context) {
Resource resource = context.eResource();
XtendFile result = (XtendFile) resource.getContents().get(0);
return result;
}
use of org.eclipse.xtend.core.xtend.XtendFile in project xtext-xtend by eclipse.
the class XtendImportedNamespaceScopeProvider method getScope.
@Override
public IScope getScope(final EObject context, final EReference reference) {
EClass referenceType = reference.getEReferenceType();
if (TypesPackage.Literals.JVM_TYPE.isSuperTypeOf(referenceType)) {
if (context instanceof XImportDeclaration) {
Resource resource = context.eResource();
IJvmTypeProvider typeProvider = typeScopeProvider.getTypeProvider(resource.getResourceSet());
AbstractTypeScope typeScope = typeScopeProvider.createTypeScope(typeProvider, null);
IResourceDescriptions descriptions = resourceDescriptionsProvider.getResourceDescriptions(context.eResource().getResourceSet());
IResourceDescription resourceDescription = descriptions.getResourceDescription(resource.getURI());
if (resourceDescription != null) {
typeScope = new LocalResourceFilteringTypeScope(typeScope, resourceDescription);
}
RecordingTypeScope recordingTypeScope = new RecordingTypeScope(typeScope, getImportedNamesSet(resource), getQualifiedNameConverter());
// TODO this scope doesn't support binary syntax for inner types. It should be a KnownTypes scope which doesn't allow simple names
// Unfortunately I cannot use a RecordingTypeScope as a parent as it is not compatible...
IScope scope = SelectableBasedScope.createScope(recordingTypeScope, getAllDescriptions(resource), reference.getEReferenceType(), false);
return scope;
}
final XtendFile xtendFile = getXtendFile(context);
final Resource resource = xtendFile.eResource();
AbstractScope result = resourceScopeCache.get("type.scope", xtendFile.eResource(), new Provider<AbstractScope>() {
@Override
public AbstractScope get() {
IJvmTypeProvider typeProvider = typeScopeProvider.getTypeProvider(resource.getResourceSet());
AbstractTypeScope typeScope = typeScopeProvider.createTypeScope(typeProvider, null);
IResourceDescriptions descriptions = resourceDescriptionsProvider.getResourceDescriptions(context.eResource().getResourceSet());
IResourceDescription resourceDescription = descriptions.getResourceDescription(resource.getURI());
if (resourceDescription != null) {
typeScope = new LocalResourceFilteringTypeScope(typeScope, resourceDescription);
}
RecordingTypeScope recordingTypeScope = new RecordingTypeScope(typeScope, getImportedNamesSet(resource), getQualifiedNameConverter());
AbstractScope rootTypeScope = getRootTypeScope(xtendFile, recordingTypeScope);
AbstractScope importScope = getImportScope(xtendFile.getImportSection(), rootTypeScope, recordingTypeScope);
AbstractScope localTypes = getResourceTypeScope(xtendFile.eResource(), xtendFile.getPackage(), importScope);
AbstractScope primitiveAware = new PrimitiveAwareScope(localTypes, typeScope);
AbstractScope caching = new CachingTypeScope(primitiveAware);
return caching;
}
});
if (context instanceof AnonymousClass) {
// necessary for the super type of an anonymous class expression
JvmDeclaredType inferredAnonymousType = associations.getInferredType((AnonymousClass) context);
if (inferredAnonymousType != null)
result = new LocalTypeScope(singletonList(inferredAnonymousType), result);
}
XtendMember syntacticContainer = EcoreUtil2.getContainerOfType(context, XtendMember.class);
if (syntacticContainer != null) {
result = getContainerScope(syntacticContainer, result);
}
EObject logicalContainer = logicalContainerProvider.getNearestLogicalContainer(context);
if (logicalContainer != null) {
List<List<JvmTypeParameter>> typeParameters = new ArrayList<List<JvmTypeParameter>>();
while (logicalContainer instanceof JvmTypeParameterDeclarator) {
JvmTypeParameterDeclarator typeParamProvider = (JvmTypeParameterDeclarator) logicalContainer;
if (!typeParamProvider.getTypeParameters().isEmpty()) {
typeParameters.add(typeParamProvider.getTypeParameters());
}
logicalContainer = logicalContainer.eContainer();
}
if (!typeParameters.isEmpty())
result = new TypeParameterScope(typeParameters, result);
}
return result;
} else if (TypesPackage.Literals.JVM_CONSTRUCTOR.isSuperTypeOf(referenceType)) {
IScope typeScope = getScope(context, TypesPackage.Literals.JVM_PARAMETERIZED_TYPE_REFERENCE__TYPE);
// this is not called from the type resolution where we want to allow constructors to link to interfaces
// in order to improve the error message, therefore we use a strict wrapper here
IScope result = new ConstructorTypeScopeWrapper(context, IVisibilityHelper.ALL, typeScope, true);
return result;
} else {
throw new IllegalArgumentException("Unexpected global request for " + reference);
}
}
use of org.eclipse.xtend.core.xtend.XtendFile in project xtext-xtend by eclipse.
the class TypeDeclarationAwareBatchTypeResolver method getEntryPoints.
@Override
protected List<EObject> getEntryPoints(EObject object) {
List<EObject> result = super.getEntryPoints(object);
EObject rootContainer = EcoreUtil.getRootContainer(object);
if (rootContainer instanceof XtendFile) {
result = Lists.newArrayList(result);
List<XtendTypeDeclaration> typeDeclarations = ((XtendFile) rootContainer).getXtendTypes();
for (XtendTypeDeclaration declaration : typeDeclarations) {
addXtendTypes(declaration, result);
}
return result;
}
return result;
}
use of org.eclipse.xtend.core.xtend.XtendFile in project xtext-xtend by eclipse.
the class XtendValidator method checkDeprecated.
@Override
public void checkDeprecated(XImportDeclaration decl) {
XtendFile file = EcoreUtil2.getContainerOfType(decl, XtendFile.class);
if (file != null) {
for (XtendTypeDeclaration t : file.getXtendTypes()) {
for (EObject e : jvmModelAssociations.getJvmElements(t)) {
if (e instanceof JvmAnnotationTarget) {
if (DeprecationUtil.isDeprecated((JvmAnnotationTarget) e)) {
return;
}
}
}
if (hasAnnotation(t, Deprecated.class)) {
return;
}
}
}
super.checkDeprecated(decl);
}
use of org.eclipse.xtend.core.xtend.XtendFile in project xtext-xtend by eclipse.
the class ProblemSupportImpl method getResourceAndEObject.
private Pair<Resource, EObject> getResourceAndEObject(final Element element) {
this.checkCanceled();
boolean _matched = false;
if (element instanceof CompilationUnitImpl) {
boolean _equals = Objects.equal(element, this.compilationUnit);
if (_equals) {
_matched = true;
Resource _eResource = this.compilationUnit.getXtendFile().eResource();
XtendFile _xtendFile = this.compilationUnit.getXtendFile();
return Pair.<Resource, EObject>of(_eResource, _xtendFile);
}
}
if (!_matched) {
if (element instanceof AbstractElementImpl) {
_matched = true;
final Resource resource = ((AbstractElementImpl<? extends EObject>) element).getDelegate().eResource();
Resource _eResource = this.compilationUnit.getXtendFile().eResource();
boolean _equals = Objects.equal(resource, _eResource);
if (_equals) {
final EObject eobject = this.compilationUnit.getJvmModelAssociations().getPrimarySourceElement(((AbstractElementImpl<? extends EObject>) element).getDelegate());
if ((eobject == null)) {
EObject _delegate = ((AbstractElementImpl<? extends EObject>) element).getDelegate();
return Pair.<Resource, EObject>of(resource, _delegate);
}
return Pair.<Resource, EObject>of(resource, eobject);
}
}
}
throw new IllegalArgumentException("You can only add issues on locally declared elements.");
}
Aggregations