| OLD | NEW |
| 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 compiler_configuration; | 5 library compiler_configuration; |
| 6 | 6 |
| 7 import 'dart:io' show | 7 import 'dart:io' show |
| 8 Platform; | 8 Platform; |
| 9 | 9 |
| 10 import 'runtime_configuration.dart' show | 10 import 'runtime_configuration.dart' show |
| (...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 extends AnalyzerCompilerConfiguration { | 387 extends AnalyzerCompilerConfiguration { |
| 388 DartBasedAnalyzerCompilerConfiguration({ | 388 DartBasedAnalyzerCompilerConfiguration({ |
| 389 bool isDebug, | 389 bool isDebug, |
| 390 bool isChecked, | 390 bool isChecked, |
| 391 bool isHostChecked, | 391 bool isHostChecked, |
| 392 bool useSdk}) | 392 bool useSdk}) |
| 393 : super( | 393 : super( |
| 394 'dart2analyzer', isDebug: isDebug, isChecked: isChecked, | 394 'dart2analyzer', isDebug: isDebug, isChecked: isChecked, |
| 395 isHostChecked: isHostChecked, useSdk: useSdk); | 395 isHostChecked: isHostChecked, useSdk: useSdk); |
| 396 | 396 |
| 397 String computeCompilerPath(String buildDir) => 'pkg/analyzer/bin/analyzer'; | 397 String computeCompilerPath(String buildDir) => 'editor/tools/analyzer'; |
| 398 } | 398 } |
| OLD | NEW |