Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Side by Side Diff: pkg/analysis_server/lib/src/domain_execution.dart

Issue 2844273003: Unify the server and plugin versions of the generators (Closed)
Patch Set: add missed files Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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'; 9 import 'dart:core';
10 10
11 import 'package:analysis_server/plugin/protocol/protocol.dart'; 11 import 'package:analysis_server/protocol/protocol.dart';
12 import 'package:analysis_server/protocol/protocol_generated.dart';
12 import 'package:analysis_server/src/analysis_server.dart'; 13 import 'package:analysis_server/src/analysis_server.dart';
13 import 'package:analysis_server/src/constants.dart'; 14 import 'package:analysis_server/src/constants.dart';
14 import 'package:analyzer/file_system/file_system.dart'; 15 import 'package:analyzer/file_system/file_system.dart';
15 import 'package:analyzer/src/dart/analysis/driver.dart'; 16 import 'package:analyzer/src/dart/analysis/driver.dart';
16 import 'package:analyzer/src/generated/engine.dart'; 17 import 'package:analyzer/src/generated/engine.dart';
17 import 'package:analyzer/src/generated/source.dart'; 18 import 'package:analyzer/src/generated/source.dart';
18 19
19 /** 20 /**
20 * Instances of the class [ExecutionDomainHandler] implement a [RequestHandler] 21 * Instances of the class [ExecutionDomainHandler] implement a [RequestHandler]
21 * that handles requests in the `execution` domain. 22 * that handles requests in the `execution` domain.
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 if (_isInAnalysisRoot(filePath)) { 262 if (_isInAnalysisRoot(filePath)) {
262 server.sendNotification( 263 server.sendNotification(
263 new ExecutionLaunchDataParams(filePath, kind: kind).toNotification()); 264 new ExecutionLaunchDataParams(filePath, kind: kind).toNotification());
264 } 265 }
265 } 266 }
266 267
267 static List<String> _getFullNames(List<Source> sources) { 268 static List<String> _getFullNames(List<Source> sources) {
268 return sources.map((Source source) => source.fullName).toList(); 269 return sources.map((Source source) => source.fullName).toList();
269 } 270 }
270 } 271 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/lib/src/domain_diagnostic.dart ('k') | pkg/analysis_server/lib/src/domain_server.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698