nodejs/deps/v8/test/inspector/debugger/evaluate-on-call-frame-expected.txt
Michaël Zasso 586db2414a
deps: update V8 to 6.9.427.22
PR-URL: https://github.com/nodejs/node/pull/21983
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Gus Caplan <me@gus.host>
Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
2018-09-07 20:59:13 +02:00

79 lines
887 B
Plaintext

Test for Debugger.evaluateOnCallFrame
Running test: testFoo
Set breakpoint before a = x.
foo()
x =
{
type : undefined
}
a =
{
type : undefined
}
foo("Hello, world!")
x =
{
type : string
value : Hello, world!
}
a =
{
type : undefined
}
Set breakpoint after a = x.
foo("Hello, world!")
x =
{
type : string
value : Hello, world!
}
a =
{
type : string
value : Hello, world!
}
Running test: testZoo
Set breakpoint before y = 0.
zoo("Hello, world!")
x =
{
type : string
value : Hello, world!
}
a =
{
type : undefined
}
Running test: testBar
Set breakpoint before a = x.
bar(undefined, "Hello, world!")
x =
{
type : undefined
}
a =
{
type : undefined
}
Set breakpoint after a = x.
bar(undefined, "Hello, world!")
x =
{
type : string
value : Hello, world!
}
a =
{
type : string
value : Hello, world!
}