mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-05 06:32:30 +02:00
LibJS: Implement (no-op) debugger statement
This commit is contained in:
committed by
Andreas Kling
parent
ea839861e5
commit
43c1fa9965
Notes:
sideshowbarker
2024-07-19 07:07:45 +09:00
Author: https://github.com/linusg Commit: https://github.com/SerenityOS/serenity/commit/43c1fa99651 Pull-request: https://github.com/SerenityOS/serenity/pull/2033
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);
|
||||
}
|
||||
Reference in New Issue
Block a user