Package com.google.dart.engine.internal.task

Examples of com.google.dart.engine.internal.task.ResolveHtmlTask


      //
      // If not, compute the information. Unless the modification date of the source continues to
      // change, this loop will eventually terminate.
      //
      htmlEntry = cacheHtmlParseData(source, htmlEntry, HtmlEntry.PARSED_UNIT);
      htmlEntry = (HtmlEntry) new ResolveHtmlTask(
          this,
          source,
          htmlEntry.getModificationTime(),
          htmlEntry.getValue(HtmlEntry.PARSED_UNIT)).perform(resultRecorder);
      state = htmlEntry.getState(descriptor);
View Full Code Here


      return createParseHtmlTask(source, htmlEntry);
    }
    HtmlEntryImpl htmlCopy = htmlEntry.getWritableCopy();
    htmlCopy.setState(HtmlEntry.RESOLVED_UNIT, CacheState.IN_PROCESS);
    cache.put(source, htmlCopy);
    return new TaskData(new ResolveHtmlTask(
        this,
        source,
        htmlCopy.getModificationTime(),
        htmlCopy.getValue(HtmlEntry.PARSED_UNIT)), false);
  }
View Full Code Here

TOP

Related Classes of com.google.dart.engine.internal.task.ResolveHtmlTask

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.