| Index: test/dart_codegen/expect/core/bool.dart
|
| diff --git a/test/dart_codegen/expect/core/bool.dart b/test/dart_codegen/expect/core/bool.dart
|
| index a83a795a335647ce63beab71288dfc8be2eeabac..617898280b1808776c76f0b56305d07c726f42a4 100644
|
| --- a/test/dart_codegen/expect/core/bool.dart
|
| +++ b/test/dart_codegen/expect/core/bool.dart
|
| @@ -1,11 +1,10 @@
|
| part of dart.core;
|
| -
|
| -class bool {
|
| - factory bool.fromEnvironment(String name, {bool defaultValue: false}) {
|
| - throw new UnsupportedError(
|
| - 'bool.fromEnvironment can only be used as a const constructor');
|
| + class bool {factory bool.fromEnvironment(String name, {
|
| + bool defaultValue : false}
|
| +) {
|
| + throw new UnsupportedError('bool.fromEnvironment can only be used as a const constructor');
|
| }
|
| - String toString() {
|
| - return this ? "true" : "false";
|
| + String toString() {
|
| + return this ? "true" : "false";
|
| }
|
| }
|
|
|