blob: 5f26f1cd4b9a62df1f91f920f1d12b52f2532c3c [file] [log] [blame]
// Expectation for test:
// foo() { print(42); }
// main() { foo(); }
function() {
var line = "" + 42;
if (typeof dartPrint == "function")
dartPrint(line);
else if (typeof console == "object" && typeof console.log != "undefined")
console.log(line);
else if (!(typeof window == "object")) {
if (!(typeof print == "function"))
throw "Unable to print message: " + String(line);
print(line);
}
}