Index: Source/WebCore/bindings/dart/resources/builtin.dart |
diff --git a/Source/WebCore/bindings/dart/resources/builtin.dart b/Source/WebCore/bindings/dart/resources/builtin.dart |
new file mode 100644 |
index 0000000000000000000000000000000000000000..796c13775865c25382edad6918219f5c8ae7869c |
--- /dev/null |
+++ b/Source/WebCore/bindings/dart/resources/builtin.dart |
@@ -0,0 +1,6 @@ |
+// FIXME: Inject into corelib via a callback once that API is in |
+// place. |
+void print(String arg) { |
+ // FIXME: This needs to work on non-DOM isolates. |
+ window.console.log(arg); |
+} |