Changeset 11918 in webkit for trunk/JavaScriptCore/kjs/JSLock.cpp


Ignore:
Timestamp:
Jan 6, 2006, 2:43:44 PM (19 years ago)
Author:
hyatt
Message:

Land all the changes to make JSCore build again on windows.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/JSLock.cpp

    r11304 r11918  
    7272void JSLock::lock()
    7373{
     74  // FIXME: Hack-o-rama. To prevent construction of a global object with a null prototype (4342216),
     75  // we need to intialize our constants before the first object is constructed. InterpreterImp::lock()
     76  // is a good place to do this because you have to call it before doing any allocations. Once we change our
     77  // implementation to use immediate values, we should remove this code.
     78  ConstantValues::initIfNeeded();
    7479}
    7580
Note: See TracChangeset for help on using the changeset viewer.