| Index: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/context/AnalysisContextImpl.java
|
| diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/context/AnalysisContextImpl.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/context/AnalysisContextImpl.java
|
| index 1a26ab68fa9fd54f234d419ccb4cb1f0de8a5516..eb82d182b0e54196b9ab58169d160a1cc0fa4015 100644
|
| --- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/context/AnalysisContextImpl.java
|
| +++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/context/AnalysisContextImpl.java
|
| @@ -46,7 +46,6 @@ import com.google.dart.engine.parser.Parser;
|
| import com.google.dart.engine.scanner.CharBufferScanner;
|
| import com.google.dart.engine.scanner.StringScanner;
|
| import com.google.dart.engine.scanner.Token;
|
| -import com.google.dart.engine.sdk.DartSdk;
|
| import com.google.dart.engine.source.Source;
|
| import com.google.dart.engine.source.SourceContainer;
|
| import com.google.dart.engine.source.SourceFactory;
|
| @@ -641,7 +640,7 @@ public class AnalysisContextImpl implements AnalysisContext {
|
| * the elements representing the libraries
|
| */
|
| public void recordLibraryElements(Map<Source, LibraryElement> elementMap) {
|
| - Source htmlSource = sourceFactory.forUri(DartSdk.DART_HTML);
|
| + Source htmlSource = sourceFactory.forUri("dart:html"); // was DartSdk.DART_HTML
|
| synchronized (cacheLock) {
|
| for (Map.Entry<Source, LibraryElement> entry : elementMap.entrySet()) {
|
| LibraryElement library = entry.getValue();
|
|
|