Package com.google.dart.engine.internal.search.scope

Examples of com.google.dart.engine.internal.search.scope.LibrarySearchScope


   *
   * @param library the library defining which elements are included in the scope
   * @return the search scope that was created
   */
  public static SearchScope createLibraryScope(Collection<LibraryElement> libraries) {
    return new LibrarySearchScope(libraries);
  }
View Full Code Here


   *
   * @param libraries the libraries defining which elements are included in the scope
   * @return the search scope that was created
   */
  public static SearchScope createLibraryScope(LibraryElement... libraries) {
    return new LibrarySearchScope(libraries);
  }
View Full Code Here

   *
   * @param library the library defining which elements are included in the scope
   * @return the search scope that was created
   */
  public static SearchScope createLibraryScope(LibraryElement library) {
    return new LibrarySearchScope(library);
  }
View Full Code Here

TOP

Related Classes of com.google.dart.engine.internal.search.scope.LibrarySearchScope

Copyright © 2018 www.massapicom. 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.