WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
156767
Replace $vm.printValue() with $vm.value().
https://bugs.webkit.org/show_bug.cgi?id=156767
Summary
Replace $vm.printValue() with $vm.value().
Mark Lam
Reported
2016-04-19 16:11:30 PDT
When debugging with $vm, this change allows us to do this: $vm.print("myObj = " + myObj + "\n"); ... instead of having to do this: $vm.print("myObj = "); $vm.printValue(myObj); $vm.print("\n");
Attachments
proposed patch.
(2.48 KB, patch)
2016-04-19 16:19 PDT
,
Mark Lam
saam
: review+
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Mark Lam
Comment 1
2016-04-19 16:17:51 PDT
(In reply to
comment #0
)
> When debugging with $vm, this change allows us to do this: > > $vm.print("myObj = " + myObj + "\n");
I meant this change allows us to do this: $vm.print("myObj = " + $vm.value(myObj) + "\n");
Mark Lam
Comment 2
2016-04-19 16:19:50 PDT
Created
attachment 276772
[details]
proposed patch.
Mark Lam
Comment 3
2016-04-19 16:32:11 PDT
Thanks for the review. Landed in
r199745
: <
http://trac.webkit.org/r199745
>.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug