Ignore:
Timestamp:
Jul 31, 2008, 5:19:22 AM (17 years ago)
Author:
[email protected]
Message:

Rubber-stamped by Maciej.

Eliminate JSLock (it was already disabled, removing the stub implementaion and all
call sites now).

File:
1 edited

Legend:

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

    r34948 r35478  
    2626#include "ExecState.h"
    2727#include "JSGlobalObject.h"
    28 #include "JSLock.h"
    2928#include "Machine.h"
    3029#include "Parser.h"
     
    4746Completion Interpreter::checkSyntax(ExecState* exec, const UString& sourceURL, int startingLineNumber, PassRefPtr<SourceProvider> source)
    4847{
    49     JSLock lock(exec);
    50 
    5148    int errLine;
    5249    UString errMsg;
     
    6562Completion Interpreter::evaluate(ExecState* exec, ScopeChain& scopeChain, const UString& sourceURL, int startingLineNumber, PassRefPtr<SourceProvider> source, JSValue* thisValue)
    6663{
    67     JSLock lock(exec);
    68    
    6964    // parse the source code
    7065    int sourceId;
Note: See TracChangeset for help on using the changeset viewer.