Ignore:
Timestamp:
Oct 18, 2008, 9:16:37 PM (17 years ago)
Author:
Darin Adler
Message:

2008-10-18 Darin Adler <Darin Adler>

  • fix non-all-in-one build
  • kjs/interpreter.h: Add include of JSImmedate.h.
File:
1 edited

Legend:

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

    r37684 r37693  
    2424#define KJS_Interpreter_h
    2525
     26#include <wtf/JSImmediate.h>
    2627#include <wtf/PassRefPtr.h>
    2728#include <wtf/unicode/Unicode.h>
     
    3132  class Completion;
    3233  class ExecState;
    33   class JSValue;
    3434  class ScopeChain;
    3535  class SourceCode;
    36   class UString;
    3736 
    3837  class Interpreter {
     
    5857     *
    5958     * @param code The code to evaluate
    60      * @param thisV The value to pass in as the "this" value for the script
     59     * @param thisValue The value to pass in as the "this" value for the script
    6160     * execution. This should either be jsNull() or an Object.
    6261     * @return A completion object representing the result of the execution.
    6362     */
    64     static Completion evaluate(ExecState*, ScopeChain&, const SourceCode&, JSValuePtr thisV = 0);
     63    static Completion evaluate(ExecState*, ScopeChain&, const SourceCode&, JSValuePtr thisValue = noValue());
    6564   
    6665    static bool shouldPrintExceptions();
Note: See TracChangeset for help on using the changeset viewer.