| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 package com.google.dart.compiler.testing; | 5 package com.google.dart.compiler.testing; |
| 6 | 6 |
| 7 import com.google.dart.compiler.CommandLineOptions.CompilerOptions; | 7 import com.google.dart.compiler.CommandLineOptions.CompilerOptions; |
| 8 import com.google.dart.compiler.CompilerConfiguration; | 8 import com.google.dart.compiler.CompilerConfiguration; |
| 9 import com.google.dart.compiler.DartCompilationPhase; | 9 import com.google.dart.compiler.DartCompilationPhase; |
| 10 import com.google.dart.compiler.LibrarySource; | 10 import com.google.dart.compiler.LibrarySource; |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 public CompilerOptions getCompilerOptions() { | 86 public CompilerOptions getCompilerOptions() { |
| 87 return compilerOptions; | 87 return compilerOptions; |
| 88 } | 88 } |
| 89 | 89 |
| 90 @Override | 90 @Override |
| 91 public ErrorFormat printErrorFormat() { | 91 public ErrorFormat printErrorFormat() { |
| 92 return ErrorFormat.MACHINE; | 92 return ErrorFormat.MACHINE; |
| 93 } | 93 } |
| 94 | 94 |
| 95 @Override | 95 @Override |
| 96 public PackageLibraryManager getSystemLibraryManager() { | 96 public PackageLibraryManager getPackageLibraryManager() { |
| 97 return systemLibraryManager; | 97 return systemLibraryManager; |
| 98 } | 98 } |
| 99 } | 99 } |
| OLD | NEW |