Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(143)

Unified Diff: test/codegen/expect/dart/_js_primitives.js

Issue 1020043002: Replace dart_core.js with actual compiled SDK (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: merge Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/codegen/expect/dart/_js_names.js ('k') | test/codegen/expect/dart/_native_typed_data.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/expect/dart/_js_primitives.js
diff --git a/test/codegen/expect/dart/_js_primitives.js b/test/codegen/expect/dart/_js_primitives.js
deleted file mode 100644
index 3936427701ea67f8924f71c8d3182b9cc47a19f5..0000000000000000000000000000000000000000
--- a/test/codegen/expect/dart/_js_primitives.js
+++ /dev/null
@@ -1,25 +0,0 @@
-var _js_primitives;
-(function(exports) {
- 'use strict';
- // Function printString: (String) → void
- function printString(string) {
- if (typeof dartPrint == "function") {
- dartPrint(string);
- return;
- }
- if (typeof console == "object" && typeof console.log != "undefined") {
- console.log(string);
- return;
- }
- if (typeof window == "object") {
- return;
- }
- if (typeof print == "function") {
- print(string);
- return;
- }
- throw "Unable to print message: " + String(string);
- }
- // Exports:
- exports.printString = printString;
-})(_js_primitives || (_js_primitives = {}));
« no previous file with comments | « test/codegen/expect/dart/_js_names.js ('k') | test/codegen/expect/dart/_native_typed_data.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698