RESOLVED FIXED Bug 35850
TypeInfo is unnecessarily large
https://bugs.webkit.org/show_bug.cgi?id=35850
Summary TypeInfo is unnecessarily large
Oliver Hunt
Reported 2010-03-07 20:31:17 PST
TypeInfo is unnecessarily large
Attachments
Patch (15.17 KB, patch)
2010-03-07 20:42 PST, Oliver Hunt
darin: review+
Oliver Hunt
Comment 1 2010-03-07 20:42:18 PST
Darin Adler
Comment 2 2010-03-08 08:01:28 PST
Comment on attachment 50184 [details] Patch > - JSType type() const { return m_type; } > + JSType type() const { return (JSType)m_type; } This should use static_cast rather than a C-style cast. r=me
Oliver Hunt
Comment 3 2010-03-08 14:45:31 PST
Note You need to log in before you can comment on or make changes to this bug.