Chromium Code Reviews| Index: sdk/lib/core/bool.dart |
| diff --git a/sdk/lib/core/bool.dart b/sdk/lib/core/bool.dart |
| index 275fd3e4cd0610a628bfaae8630621d8991dd8d3..6c7797fc4cb3be57f6fefaef74996aee1095a03e 100644 |
| --- a/sdk/lib/core/bool.dart |
| +++ b/sdk/lib/core/bool.dart |
| @@ -21,5 +21,7 @@ class bool { |
| * Returns [:"true":] if the receiver is [:true:], or [:"false":] if the |
| * receiver is [:false:]. |
| */ |
| - String toString(); |
| + String toString() { |
| + return this ? "true" : "false"; |
| + } |
| } |