You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.3 KiB
42 lines
1.3 KiB
result = ""; |
|
|
|
/* For the purpose of these tests, we have no actual console with |
|
which to test output, so create a dummy console and capture to |
|
'result', which is examined by the test framework post eval. */ |
|
var console = { |
|
log: function(arg) { result += "LOG: " + arg; }, |
|
debug: function(arg) { result += "DEBUG: " + arg; }, |
|
warn: function(arg) { result += "WARN: " + arg; }, |
|
error: function(arg) { result += "ERROR: " + arg; }, |
|
dir: function(arg) { result += "DIR: " + arg; } |
|
}; |
|
(function() { |
|
var fn = function(arg) { |
|
return "fn saw arg '" + arg + "'."; |
|
} |
|
var str = "wooo"; |
|
console.debug(str + "some \\ dodgy \" characters *$!?//" + (1+2) + (~2) + fn(str)); |
|
console.error(str + "some \\ dodgy \" characters *$!?//" + (1+2) + (~2) + fn(str)); |
|
|
|
// from ticket http://bugs.dojotoolkit.org/ticket/8549 |
|
console.log("hello :) world!"); |
|
console.log(" anything /) with a paren "); |
|
console.log(/^\)$/.test("hi")); |
|
|
|
//It would be interesting to see how this comes out: |
|
if(true) |
|
console.log("foo"); |
|
else |
|
var two = "two"; |
|
|
|
var bar; |
|
true ? console.log("bizarre") : (bar = true); |
|
true ? (bar = true) : console.log("bizarre"); |
|
|
|
(function() { |
|
return console.debug("Debug return statement."); |
|
})(); |
|
(function() { |
|
return console.error("Error return statement."); |
|
})(); |
|
})(); |