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

Unified Diff: test/codegen_test.dart

Issue 1762283003: Various cleanup (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
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');
}

Powered by Google App Engine
This is Rietveld 408576698