Index: test/codegen_test.dart |
diff --git a/test/codegen_test.dart b/test/codegen_test.dart |
index c102bd77586b9df68a35b4734fe248d8b8539459..4b1b9de9f3f82424fdeb193f32c546b2465e9100 100644 |
--- a/test/codegen_test.dart |
+++ b/test/codegen_test.dart |
@@ -207,9 +207,8 @@ $compilerMessages'''; |
test('devc dart:core', () { |
var testSdkContext = createAnalysisContextWithSources( |
- new SourceResolverOptions( |
- dartSdkPath: |
- path.join(testDirectory, '..', 'tool', 'generated_sdk'))); |
+ new SourceResolverOptions(dartSdkPath: path.join( |
+ testDirectory, '..', 'tool', 'generated_sdk'))); |
// Get the test SDK. We use a checked in copy so test expectations can |
// be generated against a specific SDK version. |
@@ -261,7 +260,8 @@ $compilerMessages'''; |
/// An implementation of analysis engine's [Logger] that prints. |
class PrintLogger implements Logger { |
- @override void logError(String message, [CaughtException exception]) { |
+ @override |
+ void logError(String message, [CaughtException exception]) { |
print('[AnalysisEngine] error $message $exception'); |
} |