Package com.google.javascript.rhino.jstype.JSTypeRegistry

Examples of com.google.javascript.rhino.jstype.JSTypeRegistry.ResolveMode


   * Force this type to resolve, even if the registry is in a lazy
   * resolving mode.
   * @see #resolve
   */
  public final JSType forceResolve(ErrorReporter t, StaticScope<JSType> scope) {
    ResolveMode oldResolveMode = registry.getResolveMode();
    registry.setResolveMode(ResolveMode.IMMEDIATE);
    JSType result = resolve(t, scope);
    registry.setResolveMode(oldResolveMode);
    return result;
  }
View Full Code Here

TOP

Related Classes of com.google.javascript.rhino.jstype.JSTypeRegistry.ResolveMode

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.