Chromium Code Reviews| Index: sdk/lib/_internal/compiler/implementation/js_backend/runtime_types.dart |
| diff --git a/sdk/lib/_internal/compiler/implementation/js_backend/runtime_types.dart b/sdk/lib/_internal/compiler/implementation/js_backend/runtime_types.dart |
| index 67234b64321795954bbdd6ec2173d651fdf11333..d0c885c9ec98586a4a9d3ffe9c52a514127b5b01 100644 |
| --- a/sdk/lib/_internal/compiler/implementation/js_backend/runtime_types.dart |
| +++ b/sdk/lib/_internal/compiler/implementation/js_backend/runtime_types.dart |
| @@ -390,7 +390,7 @@ class TypeCheckMapping implements TypeChecks { |
| StringBuffer sb = new StringBuffer(); |
| for (ClassElement holder in this) { |
| for (ClassElement check in [holder]) { |
| - sb.add('${holder.name.slowToString()}.${check.name.slowToString()}, '); |
| + sb.write('${holder.name.slowToString()}.${check.name.slowToString()}, '); |
|
karlklose
2013/03/06 09:48:21
Long line.
|
| } |
| } |
| return '[$sb]'; |