Ignore:
Timestamp:
Jun 16, 2008, 4:28:38 PM (17 years ago)
Author:
[email protected]
Message:

Reviewed by Geoff Garen.

Make Identifier construction use an explicitly passed IdentifierTable.

No change on SunSpider total.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/VM/CodeGenerator.h

    r34593 r34607  
    8383        ~CodeGenerator();
    8484
    85         const CommonIdentifiers& propertyNames() const { return *m_propertyNames; }
     85        JSGlobalData* globalData() const { return m_globalData; }
     86        const CommonIdentifiers& propertyNames() const { return *m_globalData->propertyNames; }
    8687
    8788        void generate();
     
    361362        JSValueMap m_jsValueMap;
    362363
    363         const CommonIdentifiers* m_propertyNames;
     364        JSGlobalData* m_globalData;
    364365
    365366        OpcodeID m_lastOpcodeID;
Note: See TracChangeset for help on using the changeset viewer.