diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2011-09-07 19:22:41 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2011-09-07 21:23:29 -0700 |
commit | 0bca54444a5bb869ddebaadc65cd0bf381bb1e81 (patch) | |
tree | 9c4ec90a663e0e17e9922d69bc58479bcd1538bd /deps/v8/test/mjsunit/debug-stepin-call-function-stub.js | |
parent | 526c54c9790cd8edff259686785d7b844fd29005 (diff) | |
download | node-new-0bca54444a5bb869ddebaadc65cd0bf381bb1e81.tar.gz |
Upgrade V8 to 3.6.1
Diffstat (limited to 'deps/v8/test/mjsunit/debug-stepin-call-function-stub.js')
-rw-r--r-- | deps/v8/test/mjsunit/debug-stepin-call-function-stub.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/v8/test/mjsunit/debug-stepin-call-function-stub.js b/deps/v8/test/mjsunit/debug-stepin-call-function-stub.js index c5cf8fdf3a..053b8bfe8a 100644 --- a/deps/v8/test/mjsunit/debug-stepin-call-function-stub.js +++ b/deps/v8/test/mjsunit/debug-stepin-call-function-stub.js @@ -62,7 +62,7 @@ function listener(event, exec_state, event_data, data) { Debug.setListener(listener); -function g() { +function g() { return "s"; // expected line } @@ -71,7 +71,7 @@ function testFunction() { var s = 1 +f(10); } -function g2() { +function g2() { return "s2"; // expected line } |