Index: sdk/lib/_internal/lib/collection_dev_patch.dart |
diff --git a/sdk/lib/_internal/lib/collection_dev_patch.dart b/sdk/lib/_internal/lib/collection_dev_patch.dart |
index f224f24aab6db81fdd02fe889ed215cbb223c6e5..bde97403841d6ddd6b98536d601f5b3d45eab383 100644 |
--- a/sdk/lib/_internal/lib/collection_dev_patch.dart |
+++ b/sdk/lib/_internal/lib/collection_dev_patch.dart |
@@ -2,7 +2,13 @@ |
// 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. |
+import 'dart:_js_helper' show Primitives; |
+ |
patch class Symbol implements core.Symbol { |
patch const Symbol(String name) |
: this._name = name; |
} |
+ |
+patch void printToConsole(String line) { |
+ Primitives.printString(line); |
+} |