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

Side by Side Diff: pkg/analysis_server/test/analysis_abstract.dart

Issue 2903303002: Fix a recent regression with nested contexts (Closed)
Patch Set: Created 3 years, 6 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
« no previous file with comments | « pkg/analysis_server/lib/src/analysis_server.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 import 'dart:async'; 5 import 'dart:async';
6 6
7 import 'package:analysis_server/protocol/protocol.dart'; 7 import 'package:analysis_server/protocol/protocol.dart';
8 import 'package:analysis_server/protocol/protocol_generated.dart' 8 import 'package:analysis_server/protocol/protocol_generated.dart'
9 hide AnalysisOptions; 9 hide AnalysisOptions;
10 import 'package:analysis_server/src/analysis_server.dart'; 10 import 'package:analysis_server/src/analysis_server.dart';
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 return null; 292 return null;
293 } 293 }
294 294
295 @override 295 @override
296 NotificationManager get notificationManager { 296 NotificationManager get notificationManager {
297 fail('Unexpected invocation of notificationManager'); 297 fail('Unexpected invocation of notificationManager');
298 return null; 298 return null;
299 } 299 }
300 300
301 @override 301 @override
302 List<PluginInfo> get plugins {
303 fail('Unexpected invocation of plugins');
304 return null;
305 }
306
307 @override
302 ResourceProvider get resourceProvider { 308 ResourceProvider get resourceProvider {
303 fail('Unexpected invocation of resourceProvider'); 309 fail('Unexpected invocation of resourceProvider');
304 return null; 310 return null;
305 } 311 }
306 312
307 @override 313 @override
308 String get sdkPath { 314 String get sdkPath {
309 fail('Unexpected invocation of sdkPath'); 315 fail('Unexpected invocation of sdkPath');
310 return null; 316 return null;
311 } 317 }
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
364 Future<List<Null>> stopAll() async { 370 Future<List<Null>> stopAll() async {
365 fail('Unexpected invocation of stopAll'); 371 fail('Unexpected invocation of stopAll');
366 return null; 372 return null;
367 } 373 }
368 374
369 @override 375 @override
370 void whitelistEverything() { 376 void whitelistEverything() {
371 fail('Unexpected invocation of whitelistEverything'); 377 fail('Unexpected invocation of whitelistEverything');
372 } 378 }
373 } 379 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/lib/src/analysis_server.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698