Changeset 9929 in webkit for trunk/JavaScriptCore/kjs/debugger.h


Ignore:
Timestamp:
Jul 27, 2005, 4:10:48 PM (20 years ago)
Author:
mjs
Message:

Changes by Michael Kahl, reviewed by me.

  • fixed <rdar://problem/4194278> Need better debugging support in JavaScriptCore
  • JavaScriptCore.xcodeproj/project.pbxproj:
  • kjs/debugger.cpp: (KJS::AttachedInterpreter::AttachedInterpreter): (KJS::AttachedInterpreter::~AttachedInterpreter): (Debugger::~Debugger): (Debugger::attach): (Debugger::detach): (Debugger::sourceParsed):
  • kjs/debugger.h:
  • kjs/function.cpp: (KJS::FunctionImp::call): (KJS::GlobalFuncImp::call):
  • kjs/function_object.cpp: (FunctionObjectImp::construct):
  • kjs/grammar.y:
  • kjs/internal.cpp: (Parser::parse): (InterpreterImp::evaluate):
  • kjs/internal.h: (KJS::InterpreterImp::setDebugger):
  • kjs/interpreter.cpp:
  • kjs/interpreter.h: (KJS::Interpreter::imp):
  • kjs/nodes.cpp:
File:
1 edited

Legend:

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

    r9768 r9929  
    102102     * @param sourceId The ID of the source code (corresponds to the
    103103     * sourceId supplied in other functions such as atStatement()
     104     * @param sourceURL Where the source code that was parsed came from
    104105     * @param source The source code that was parsed
    105106     * @param errorLine The line number at which parsing encountered an
     
    108109     * be aborted
    109110     */
    110     virtual bool sourceParsed(ExecState *exec, int sourceId,
     111    virtual bool sourceParsed(ExecState *exec, int sourceId, const UString &sourceURL,
    111112                              const UString &source, int errorLine);
    112113
     
    206207  private:
    207208    DebuggerImp *rep;
     209
     210  public:
     211    static int debuggersPresent;
    208212  };
    209213
Note: See TracChangeset for help on using the changeset viewer.