mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 07:27:22 +01:00
87286cc737
Fixes #1831
22 lines
227 B
JavaScript
22 lines
227 B
JavaScript
// wrapper line
|
|
debugger;
|
|
debugger;
|
|
function a(x) {
|
|
var i = 10;
|
|
while (--i != 0);
|
|
debugger;
|
|
return i;
|
|
}
|
|
function b() {
|
|
return ['hello', 'world'].join(' ');
|
|
}
|
|
a();
|
|
a(1);
|
|
b();
|
|
b();
|
|
|
|
|
|
|
|
setInterval(function() {
|
|
}, 5000);
|