| Index: test/debugger/debug/debug-stepin-constructor.js
|
| diff --git a/test/mjsunit/debug-stepin-constructor.js b/test/debugger/debug/debug-stepin-constructor.js
|
| similarity index 92%
|
| rename from test/mjsunit/debug-stepin-constructor.js
|
| rename to test/debugger/debug/debug-stepin-constructor.js
|
| index 5549814a65067f181de0f285aab3a7f45c8cd66e..b6aaec8809fe0b459d7c7daa77f2a7d299ba67b3 100644
|
| --- a/test/mjsunit/debug-stepin-constructor.js
|
| +++ b/test/debugger/debug/debug-stepin-constructor.js
|
| @@ -25,8 +25,6 @@
|
| // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
| // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
| -// Flags: --expose-debug-as debug
|
| -// Get the Debug object exposed from the debug context global object.
|
| Debug = debug.Debug
|
|
|
| // Simple debug event handler which counts the number of breaks hit and steps.
|
| @@ -38,9 +36,6 @@ function listener(event, exec_state, event_data, data) {
|
| if (exec_state.frameCount() > 1) {
|
| exec_state.prepareStep(Debug.StepAction.StepIn);
|
| }
|
| -
|
| - // Test that there is a script.
|
| - assertTrue(typeof(event_data.func().script()) == 'object');
|
| }
|
| };
|
|
|
|
|