blob: ea866094258e9eb1ef82420abc1af88be393d31c [file] [log] [blame]
// Expectation for test:
// set foo(x) { print(x); }
// main() { foo = 42; }
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);
}
}