mirror of https://github.com/lukechilds/node.git
committed by
Ryan Dahl
2 changed files with 28 additions and 29 deletions
@ -0,0 +1,16 @@ |
|||
// 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(); |
Loading…
Reference in new issue