Index: pkg/analysis_server/lib/src/domain_execution.dart |
diff --git a/pkg/analysis_server/lib/src/domain_execution.dart b/pkg/analysis_server/lib/src/domain_execution.dart |
index c2f8a5a09ebe32f89dd168c83136b9791499c172..3988de2826f925eb384263c18da6f2513aaa7cb0 100644 |
--- a/pkg/analysis_server/lib/src/domain_execution.dart |
+++ b/pkg/analysis_server/lib/src/domain_execution.dart |
@@ -161,8 +161,7 @@ class ExecutionDomainHandler implements RequestHandler { |
String filePath = source.fullName; |
// check files |
bool isDartFile = notice.resolvedDartUnit != null; |
- bool isHtmlFile = notice.resolvedHtmlUnit != null; |
- if (!isDartFile && !isHtmlFile) { |
+ if (!isDartFile) { |
return; |
} |
// prepare context |
@@ -184,10 +183,6 @@ class ExecutionDomainHandler implements RequestHandler { |
server.sendNotification( |
new ExecutionLaunchDataParams(filePath, kind: kind) |
.toNotification()); |
- } else if (isHtmlFile) { |
- List<Source> libraries = context.getLibrariesReferencedFromHtml(source); |
- server.sendNotification(new ExecutionLaunchDataParams(filePath, |
- referencedFiles: _getFullNames(libraries)).toNotification()); |
} |
}); |
} |