OLD | NEW |
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 dev_compiler.src.codegen.code_generator; | 5 library dev_compiler.src.codegen.code_generator; |
6 | 6 |
7 import 'package:analyzer/src/generated/element.dart' | 7 import 'package:analyzer/src/generated/element.dart' |
8 show CompilationUnitElement, LibraryElement; | 8 show CompilationUnitElement, LibraryElement; |
9 import 'package:analyzer/src/generated/engine.dart' show AnalysisContext; | 9 import 'package:analyzer/src/generated/engine.dart' show AnalysisContext; |
| 10 import 'package:analyzer/src/task/strong/rules.dart'; |
10 import 'package:path/path.dart' as path; | 11 import 'package:path/path.dart' as path; |
11 | 12 |
12 import '../compiler.dart' show AbstractCompiler; | 13 import '../compiler.dart' show AbstractCompiler; |
13 import '../info.dart'; | 14 import '../info.dart'; |
14 import '../utils.dart' show canonicalLibraryName; | 15 import '../utils.dart' show canonicalLibraryName; |
15 import '../checker/rules.dart'; | |
16 import '../options.dart' show CodegenOptions; | 16 import '../options.dart' show CodegenOptions; |
17 | 17 |
18 abstract class CodeGenerator { | 18 abstract class CodeGenerator { |
19 final AbstractCompiler compiler; | 19 final AbstractCompiler compiler; |
20 final TypeRules rules; | 20 final TypeRules rules; |
21 final AnalysisContext context; | 21 final AnalysisContext context; |
22 final CodegenOptions options; | 22 final CodegenOptions options; |
23 | 23 |
24 CodeGenerator(AbstractCompiler compiler) | 24 CodeGenerator(AbstractCompiler compiler) |
25 : compiler = compiler, | 25 : compiler = compiler, |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 // Not a package. | 120 // Not a package. |
121 // TODO(leafp) These may need to be adjusted | 121 // TODO(leafp) These may need to be adjusted |
122 // relative to the import location | 122 // relative to the import location |
123 return new Uri(path: suffix); | 123 return new Uri(path: suffix); |
124 } | 124 } |
125 assert(index == 0); | 125 assert(index == 0); |
126 return new Uri( | 126 return new Uri( |
127 scheme: 'package', path: path.joinAll(parts.sublist(index + 1))); | 127 scheme: 'package', path: path.joinAll(parts.sublist(index + 1))); |
128 } | 128 } |
129 } | 129 } |
OLD | NEW |