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

Side by Side Diff: pkg/analysis_server/lib/src/edit/edit_domain.dart

Issue 1788223002: Deprecate the generated AST library and clean up imports (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 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 edit.domain; 5 library edit.domain;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 8
9 import 'package:analysis_server/plugin/edit/assist/assist_core.dart'; 9 import 'package:analysis_server/plugin/edit/assist/assist_core.dart';
10 import 'package:analysis_server/plugin/edit/fix/fix_core.dart'; 10 import 'package:analysis_server/plugin/edit/fix/fix_core.dart';
11 import 'package:analysis_server/src/analysis_server.dart'; 11 import 'package:analysis_server/src/analysis_server.dart';
12 import 'package:analysis_server/src/collections.dart'; 12 import 'package:analysis_server/src/collections.dart';
13 import 'package:analysis_server/src/constants.dart'; 13 import 'package:analysis_server/src/constants.dart';
14 import 'package:analysis_server/src/protocol_server.dart' hide Element; 14 import 'package:analysis_server/src/protocol_server.dart' hide Element;
15 import 'package:analysis_server/src/services/correction/assist.dart'; 15 import 'package:analysis_server/src/services/correction/assist.dart';
16 import 'package:analysis_server/src/services/correction/fix.dart'; 16 import 'package:analysis_server/src/services/correction/fix.dart';
17 import 'package:analysis_server/src/services/correction/organize_directives.dart '; 17 import 'package:analysis_server/src/services/correction/organize_directives.dart ';
18 import 'package:analysis_server/src/services/correction/sort_members.dart'; 18 import 'package:analysis_server/src/services/correction/sort_members.dart';
19 import 'package:analysis_server/src/services/correction/status.dart'; 19 import 'package:analysis_server/src/services/correction/status.dart';
20 import 'package:analysis_server/src/services/refactoring/refactoring.dart'; 20 import 'package:analysis_server/src/services/refactoring/refactoring.dart';
21 import 'package:analysis_server/src/services/search/search_engine.dart'; 21 import 'package:analysis_server/src/services/search/search_engine.dart';
22 import 'package:analyzer/dart/ast/ast.dart';
22 import 'package:analyzer/dart/element/element.dart'; 23 import 'package:analyzer/dart/element/element.dart';
23 import 'package:analyzer/src/dart/scanner/scanner.dart' as engine; 24 import 'package:analyzer/src/dart/scanner/scanner.dart' as engine;
24 import 'package:analyzer/src/generated/ast.dart';
25 import 'package:analyzer/src/generated/engine.dart' as engine; 25 import 'package:analyzer/src/generated/engine.dart' as engine;
26 import 'package:analyzer/src/generated/error.dart' as engine; 26 import 'package:analyzer/src/generated/error.dart' as engine;
27 import 'package:analyzer/src/generated/parser.dart' as engine; 27 import 'package:analyzer/src/generated/parser.dart' as engine;
28 import 'package:analyzer/src/generated/source.dart'; 28 import 'package:analyzer/src/generated/source.dart';
29 import 'package:dart_style/dart_style.dart'; 29 import 'package:dart_style/dart_style.dart';
30 30
31 bool test_simulateRefactoringException_change = false; 31 bool test_simulateRefactoringException_change = false;
32 bool test_simulateRefactoringException_final = false; 32 bool test_simulateRefactoringException_final = false;
33 bool test_simulateRefactoringException_init = false; 33 bool test_simulateRefactoringException_init = false;
34 34
(...skipping 711 matching lines...) Expand 10 before | Expand all | Expand 10 after
746 } 746 }
747 return new RefactoringStatus(); 747 return new RefactoringStatus();
748 } 748 }
749 } 749 }
750 750
751 /** 751 /**
752 * [_RefactoringManager] throws instances of this class internally to stop 752 * [_RefactoringManager] throws instances of this class internally to stop
753 * processing in a manager that was reset. 753 * processing in a manager that was reset.
754 */ 754 */
755 class _ResetError {} 755 class _ResetError {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698