| Index: runtime/lib/print_patch.dart
|
| diff --git a/tests/compiler/dart2js_extra/panda_lib.dart b/runtime/lib/print_patch.dart
|
| similarity index 71%
|
| copy from tests/compiler/dart2js_extra/panda_lib.dart
|
| copy to runtime/lib/print_patch.dart
|
| index 24bdd8843fe55bea9ad2062d502d1e29e6754020..48bb9a9d711fa6349789295631e5b0574541b71e 100644
|
| --- a/tests/compiler/dart2js_extra/panda_lib.dart
|
| +++ b/runtime/lib/print_patch.dart
|
| @@ -2,9 +2,8 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| -#library("panda_lib");
|
| -
|
| -class Panda {
|
| - Panda() {
|
| +patch class Logger {
|
| + /* patch */ static void print(Object obj) {
|
| + builtin.print(obj);
|
| }
|
| }
|
|
|