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

Side by Side Diff: pkg/front_end/lib/src/fasta/kernel/kernel_target.dart

Issue 2828583003: remove dependencies to analyzer from lib/src/fasta (Closed)
Patch Set: rebase Created 3 years, 8 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) 2016, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2016, 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 fasta.kernel_target; 5 library fasta.kernel_target;
6 6
7 import 'dart:async' show Future; 7 import 'dart:async' show Future;
8 8
9 import 'dart:io' show File, IOSink; 9 import 'dart:io' show File, IOSink;
10 10
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 43
44 import 'package:kernel/text/ast_to_text.dart' show Printer; 44 import 'package:kernel/text/ast_to_text.dart' show Printer;
45 45
46 import 'package:kernel/transformations/erasure.dart' show Erasure; 46 import 'package:kernel/transformations/erasure.dart' show Erasure;
47 47
48 import 'package:kernel/transformations/continuation.dart' as transformAsync; 48 import 'package:kernel/transformations/continuation.dart' as transformAsync;
49 49
50 import 'package:kernel/transformations/mixin_full_resolution.dart' 50 import 'package:kernel/transformations/mixin_full_resolution.dart'
51 show MixinFullResolution; 51 show MixinFullResolution;
52 52
53 import 'package:kernel/transformations/continuation.dart' as continuation;
54
55 import 'package:kernel/transformations/setup_builtin_library.dart' 53 import 'package:kernel/transformations/setup_builtin_library.dart'
56 as setup_builtin_library; 54 as setup_builtin_library;
57 55
58 import 'package:kernel/type_algebra.dart' show substitute; 56 import 'package:kernel/type_algebra.dart' show substitute;
59 57
60 import '../source/source_loader.dart' show SourceLoader; 58 import '../source/source_loader.dart' show SourceLoader;
61 59
62 import '../source/source_class_builder.dart' show SourceClassBuilder; 60 import '../source/source_class_builder.dart' show SourceClassBuilder;
63 61
64 import '../target_implementation.dart' show TargetImplementation; 62 import '../target_implementation.dart' show TargetImplementation;
(...skipping 654 matching lines...) Expand 10 before | Expand all | Expand 10 after
719 } 717 }
720 for (Constructor constructor in superclass.constructors) { 718 for (Constructor constructor in superclass.constructors) {
721 if (constructor.name.name.isEmpty) { 719 if (constructor.name.name.isEmpty) {
722 return constructor.function.requiredParameterCount == 0 720 return constructor.function.requiredParameterCount == 0
723 ? constructor 721 ? constructor
724 : null; 722 : null;
725 } 723 }
726 } 724 }
727 return null; 725 return null;
728 } 726 }
OLDNEW
« no previous file with comments | « pkg/front_end/lib/src/fasta/environment_variable.dart ('k') | pkg/front_end/lib/src/fasta/run.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698