v8/test/debugger/debug/debug-scripts-throw.js

13 lines
297 B
JavaScript
Raw Normal View History

// Copyright 2015 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
Debug = debug.Debug;
2016-11-16 08:34:01 +00:00
Debug.disable();
assertThrows("Debug.scripts()");
2016-11-16 08:34:01 +00:00
Debug.enable();
assertDoesNotThrow("Debug.scripts()");