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

Unified Diff: test/codegen_test.dart

Issue 997143003: Fix for conditional expressions (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 9 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 dbe68ca7d783ff8a668fec14e9cc937f26f26ea1..d3d17644380b623374c2befa6e6c630fdaef6e07 100644
--- a/test/codegen_test.dart
+++ b/test/codegen_test.dart
@@ -21,8 +21,8 @@ import 'package:unittest/unittest.dart';
final ArgParser argParser = new ArgParser()
..addOption('dart-sdk', help: 'Dart SDK Path', defaultsTo: null)
- ..addFlag('dart-gen',
- abbr: 'd', help: 'Generate dart output', defaultsTo: false);
+ ..addFlag(
+ 'dart-gen', abbr: 'd', help: 'Generate dart output', defaultsTo: false);
main(arguments) {
if (arguments == null) arguments = [];

Powered by Google App Engine
This is Rietveld 408576698