blob: 218ba3153a4c421c3d82aba9a295253ebb8193d2 [file] [log] [blame]
// Expectation for test:
// get 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);
}
}