| Index: test/codegen/expect/_js_primitives/_js_primitives.js
|
| diff --git a/test/codegen/expect/_js_primitives/_js_primitives.js b/test/codegen/expect/_js_primitives/_js_primitives.js
|
| deleted file mode 100644
|
| index af32b2f09ce66623d1c5fa895eb1308c539053fd..0000000000000000000000000000000000000000
|
| --- a/test/codegen/expect/_js_primitives/_js_primitives.js
|
| +++ /dev/null
|
| @@ -1,25 +0,0 @@
|
| -var _js_primitives;
|
| -(function(_js_primitives) {
|
| - 'use strict';
|
| - // Function printString: (String) → void
|
| - function printString(string) {
|
| - if (typeof dartPrint == "function") {
|
| - dartPrint(string);
|
| - return;
|
| - }
|
| - if (dart.notNull(typeof console == "object") && dart.notNull(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:
|
| - _js_primitives.printString = printString;
|
| -})(_js_primitives || (_js_primitives = {}));
|
|
|