WebKit Bugzilla
Attachment 345887 Details for
Bug 188085
: [JSC] Dump IndexingMode in Structure
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-188085-20180727082300.patch (text/plain), 1.36 KB, created by
Yusuke Suzuki
on 2018-07-26 16:23:01 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Yusuke Suzuki
Created:
2018-07-26 16:23:01 PDT
Size:
1.36 KB
patch
obsolete
>Subversion Revision: 234280 >diff --git a/Source/JavaScriptCore/ChangeLog b/Source/JavaScriptCore/ChangeLog >index 8e23ad3c875d0811d6b0a1432908493c967a96fe..9bcf53759dd03227305286e357b09f488284fc69 100644 >--- a/Source/JavaScriptCore/ChangeLog >+++ b/Source/JavaScriptCore/ChangeLog >@@ -1,3 +1,15 @@ >+2018-07-26 Yusuke Suzuki <utatane.tea@gmail.com> >+ >+ [JSC] Dump IndexingMode in Structure >+ https://bugs.webkit.org/show_bug.cgi?id=188085 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ Dump IndexingMode instead of IndexingType. >+ >+ * runtime/Structure.cpp: >+ (JSC::Structure::dump const): >+ > 2018-07-26 Ross Kirsling <ross.kirsling@sony.com> > > String(View) should have a splitAllowingEmptyEntries function instead of a flag parameter >diff --git a/Source/JavaScriptCore/runtime/Structure.cpp b/Source/JavaScriptCore/runtime/Structure.cpp >index a17b6ac0f56175d3f403d2c0a5444f4e51154039..58d83bce4afdade803d384ba710e0ab9d6ad0918 100644 >--- a/Source/JavaScriptCore/runtime/Structure.cpp >+++ b/Source/JavaScriptCore/runtime/Structure.cpp >@@ -1178,7 +1178,7 @@ void Structure::dump(PrintStream& out) const > return true; > }); > >- out.print("}, ", IndexingTypeDump(indexingType())); >+ out.print("}, ", IndexingTypeDump(indexingMode())); > > if (hasPolyProto()) > out.print(", PolyProto offset:", knownPolyProtoOffset);
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 188085
: 345887