Ignore:
Timestamp:
Mar 12, 2014, 2:02:02 PM (11 years ago)
Author:
[email protected]
Message:

Unreviewed, rolling out r165482.
https://bugs.webkit.org/show_bug.cgi?id=130157

Broke the windows build; "error C2466: cannot allocate an
array of constant size 0" (Requested by jernoble on #webkit).

Reverted changeset:

"Reduce memory use for static property maps"
https://bugs.webkit.org/show_bug.cgi?id=129986
http://trac.webkit.org/changeset/165482

Source/JavaScriptCore:

Patch by Commit Queue <[email protected]> on 2014-03-12

Source/WebCore:

Patch by Commit Queue <[email protected]> on 2014-03-12

LayoutTests:

Patch by Commit Queue <[email protected]> on 2014-03-12

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/parser/Lexer.cpp

    r165482 r165497  
    830830        ASSERT(shouldCreateIdentifier);
    831831        if (remaining < maxTokenLength) {
    832             const HashTableValue* entry = m_vm->keywords->getKeyword(*ident);
     832            const HashEntry* entry = m_vm->keywords->getKeyword(*ident);
    833833            ASSERT((remaining < maxTokenLength) || !entry);
    834834            if (!entry)
     
    907907        ASSERT(shouldCreateIdentifier);
    908908        if (remaining < maxTokenLength) {
    909             const HashTableValue* entry = m_vm->keywords->getKeyword(*ident);
     909            const HashEntry* entry = m_vm->keywords->getKeyword(*ident);
    910910            ASSERT((remaining < maxTokenLength) || !entry);
    911911            if (!entry)
     
    974974        // Keywords must not be recognized if there was an \uXXXX in the identifier.
    975975        if (remaining < maxTokenLength) {
    976             const HashTableValue* entry = m_vm->keywords->getKeyword(*ident);
     976            const HashEntry* entry = m_vm->keywords->getKeyword(*ident);
    977977            ASSERT((remaining < maxTokenLength) || !entry);
    978978            if (!entry)
Note: See TracChangeset for help on using the changeset viewer.