mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 05:48:12 +00:00
LibJS: Implement (no-op) debugger statement
This commit is contained in:
parent
ea839861e5
commit
43c1fa9965
9 changed files with 41 additions and 1 deletions
9
Libraries/LibJS/Tests/debugger-statement.js
Normal file
9
Libraries/LibJS/Tests/debugger-statement.js
Normal file
|
@ -0,0 +1,9 @@
|
|||
load("test-common.js");
|
||||
|
||||
try {
|
||||
debugger;
|
||||
|
||||
console.log("PASS");
|
||||
} catch (e) {
|
||||
console.log("FAIL: " + e);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue