Chromium Code Reviews| Index: runtime/lib/bool_patch.dart |
| diff --git a/runtime/lib/bool_patch.dart b/runtime/lib/bool_patch.dart |
| index f5020c36a038eb79d80fa342f7c3a53460610748..d5594e2ee0bb1e75574d6bb80206f590ff23158a 100644 |
| --- a/runtime/lib/bool_patch.dart |
| +++ b/runtime/lib/bool_patch.dart |
| @@ -10,4 +10,7 @@ patch class bool { |
| return this ? 1231 : 1237; |
| } |
| + String toString() { |
| + return this ? "true" : "false"; |
| + } |
| } |