Package com.jetbrains.lang.dart.psi

Examples of com.jetbrains.lang.dart.psi.DartPathOrLibraryReference.resolve()


  @Nullable
  public PsiElement resolveLibrary() {
    final DartPsiCompositeElementImpl statement =
      PsiTreeUtil.getParentOfType(this, DartImportStatementImpl.class, DartExportStatementImpl.class);
    final DartPathOrLibraryReference pathOrLibraryReference = PsiTreeUtil.getChildOfType(statement, DartPathOrLibraryReference.class);
    return pathOrLibraryReference != null ? pathOrLibraryReference.resolve() : null;
  }

  @NotNull
  @Override
  public DartClassResolveResult resolveDartClass() {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.