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

Side by Side Diff: pkg/analyzer/test/generated/engine_test.dart

Issue 2314933003: Issue 27130. Fix applying changes to .analysis_options on save. (Closed)
Patch Set: Created 4 years, 3 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 analyzer.test.generated.engine_test; 5 library analyzer.test.generated.engine_test;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 8
9 import 'package:analyzer/dart/ast/ast.dart'; 9 import 'package:analyzer/dart/ast/ast.dart';
10 import 'package:analyzer/dart/element/element.dart'; 10 import 'package:analyzer/dart/element/element.dart';
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after
395 void addListener(AnalysisListener listener) { 395 void addListener(AnalysisListener listener) {
396 fail("Unexpected invocation of addListener"); 396 fail("Unexpected invocation of addListener");
397 } 397 }
398 398
399 @override 399 @override
400 void applyAnalysisDelta(AnalysisDelta delta) { 400 void applyAnalysisDelta(AnalysisDelta delta) {
401 fail("Unexpected invocation of applyAnalysisDelta"); 401 fail("Unexpected invocation of applyAnalysisDelta");
402 } 402 }
403 403
404 @override 404 @override
405 ApplyChangesStatus applyChanges(ChangeSet changeSet) { 405 void applyChanges(ChangeSet changeSet) {
406 fail("Unexpected invocation of applyChanges"); 406 fail("Unexpected invocation of applyChanges");
407 return null; 407 return null;
408 } 408 }
409 409
410 @override 410 @override
411 String computeDocumentationComment(Element element) { 411 String computeDocumentationComment(Element element) {
412 fail("Unexpected invocation of computeDocumentationComment"); 412 fail("Unexpected invocation of computeDocumentationComment");
413 return null; 413 return null;
414 } 414 }
415 415
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
714 @override 714 @override
715 void test_flushAstStructures(Source source) { 715 void test_flushAstStructures(Source source) {
716 fail("Unexpected invocation of test_flushAstStructures"); 716 fail("Unexpected invocation of test_flushAstStructures");
717 } 717 }
718 718
719 @override 719 @override
720 void visitContentCache(ContentCacheVisitor visitor) { 720 void visitContentCache(ContentCacheVisitor visitor) {
721 fail("Unexpected invocation of visitContentCache"); 721 fail("Unexpected invocation of visitContentCache");
722 } 722 }
723 } 723 }
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/generated/engine.dart ('k') | pkg/analyzer/test/src/context/context_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698