| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library domain.execution; | 5 library domain.execution; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 import 'dart:collection'; | 8 import 'dart:collection'; |
| 9 import 'dart:core' hide Resource; | 9 import 'dart:core' hide Resource; |
| 10 | 10 |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 referencedFiles: _getFullNames(libraries)).toNotification()); | 186 referencedFiles: _getFullNames(libraries)).toNotification()); |
| 187 } | 187 } |
| 188 }); | 188 }); |
| 189 } | 189 } |
| 190 | 190 |
| 191 /** | 191 /** |
| 192 * Return `true` if the given [filePath] represents a file that is in an | 192 * Return `true` if the given [filePath] represents a file that is in an |
| 193 * analysis root. | 193 * analysis root. |
| 194 */ | 194 */ |
| 195 bool _isInAnalysisRoot(String filePath) => | 195 bool _isInAnalysisRoot(String filePath) => |
| 196 server.contextDirectoryManager.isInAnalysisRoot(filePath); | 196 server.contextManager.isInAnalysisRoot(filePath); |
| 197 | 197 |
| 198 void _reportCurrentFileStatus() { | 198 void _reportCurrentFileStatus() { |
| 199 for (AnalysisContext context in server.getAnalysisContexts()) { | 199 for (AnalysisContext context in server.getAnalysisContexts()) { |
| 200 List<Source> librarySources = context.librarySources; | 200 List<Source> librarySources = context.librarySources; |
| 201 List<Source> clientSources = context.launchableClientLibrarySources; | 201 List<Source> clientSources = context.launchableClientLibrarySources; |
| 202 List<Source> serverSources = context.launchableServerLibrarySources; | 202 List<Source> serverSources = context.launchableServerLibrarySources; |
| 203 for (Source source in clientSources) { | 203 for (Source source in clientSources) { |
| 204 if (serverSources.remove(source)) { | 204 if (serverSources.remove(source)) { |
| 205 _sendKindNotification(source.fullName, ExecutableKind.EITHER); | 205 _sendKindNotification(source.fullName, ExecutableKind.EITHER); |
| 206 } else { | 206 } else { |
| (...skipping 28 matching lines...) Expand all Loading... |
| 235 if (_isInAnalysisRoot(filePath)) { | 235 if (_isInAnalysisRoot(filePath)) { |
| 236 server.sendNotification( | 236 server.sendNotification( |
| 237 new ExecutionLaunchDataParams(filePath, kind: kind).toNotification()); | 237 new ExecutionLaunchDataParams(filePath, kind: kind).toNotification()); |
| 238 } | 238 } |
| 239 } | 239 } |
| 240 | 240 |
| 241 static List<String> _getFullNames(List<Source> sources) { | 241 static List<String> _getFullNames(List<Source> sources) { |
| 242 return sources.map((Source source) => source.fullName).toList(); | 242 return sources.map((Source source) => source.fullName).toList(); |
| 243 } | 243 } |
| 244 } | 244 } |
| OLD | NEW |