summaryrefslogtreecommitdiff
path: root/deps/v8/test/inspector/debugger/breakpoints-and-side-effects-expected.txt
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/inspector/debugger/breakpoints-and-side-effects-expected.txt')
-rw-r--r--deps/v8/test/inspector/debugger/breakpoints-and-side-effects-expected.txt26
1 files changed, 26 insertions, 0 deletions
diff --git a/deps/v8/test/inspector/debugger/breakpoints-and-side-effects-expected.txt b/deps/v8/test/inspector/debugger/breakpoints-and-side-effects-expected.txt
new file mode 100644
index 0000000000..59c4d0da27
--- /dev/null
+++ b/deps/v8/test/inspector/debugger/breakpoints-and-side-effects-expected.txt
@@ -0,0 +1,26 @@
+Tests how breakpoints and side effects live together.
+Test breakpoint, should pause inside foo:
+foo (test.js:3:2)
+(anonymous) (:0:0)
+
+Run foo with no side effects:
+{
+ className : EvalError
+ description : EvalError: Possible side-effect in debug-evaluate
+ objectId : <objectId>
+ subtype : error
+ type : object
+}
+
+Test breakpoint after run with side effect check:
+foo (test.js:3:2)
+(anonymous) (:0:0)
+
+Run foo with no side effects after debugger disabled:
+{
+ className : EvalError
+ description : EvalError: Possible side-effect in debug-evaluate
+ objectId : <objectId>
+ subtype : error
+ type : object
+}