use of org.jetbrains.kotlin.resolve.lazy.descriptors.LazyAnnotations in project kotlin by JetBrains.
the class ResolveSession method createAnnotations.
private LazyAnnotations createAnnotations(KtFile file, List<KtAnnotationEntry> annotationEntries) {
LexicalScope scope = fileScopeProvider.getFileResolutionScope(file);
LazyAnnotationsContextImpl lazyAnnotationContext = new LazyAnnotationsContextImpl(annotationResolver, storageManager, trace, scope);
return new LazyAnnotations(lazyAnnotationContext, annotationEntries);
}
Aggregations