]>
git.saurik.com Git - apple/javascriptcore.git/blob - debugger/Debugger.cpp
da1cb3dd5231999b1245fdb5ef76b8e5782c6b7a
2 * Copyright (C) 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 1999-2001 Harri Porten (porten@kde.org)
4 * Copyright (C) 2001 Peter Kelly (pmk@post.com)
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
25 #include "JSGlobalObject.h"
26 #include "Interpreter.h"
37 HashSet
<JSGlobalObject
*>::iterator end
= m_globalObjects
.end();
38 for (HashSet
<JSGlobalObject
*>::iterator it
= m_globalObjects
.begin(); it
!= end
; ++it
)
39 (*it
)->setDebugger(0);
42 void Debugger::attach(JSGlobalObject
* globalObject
)
44 ASSERT(!globalObject
->debugger());
45 globalObject
->setDebugger(this);
46 m_globalObjects
.add(globalObject
);
49 void Debugger::detach(JSGlobalObject
* globalObject
)
51 ASSERT(m_globalObjects
.contains(globalObject
));
52 m_globalObjects
.remove(globalObject
);
53 globalObject
->setDebugger(0);
56 JSValuePtr
evaluateInGlobalCallFrame(const UString
& script
, JSValuePtr
& exception
, JSGlobalObject
* globalObject
)
58 CallFrame
* globalCallFrame
= globalObject
->globalExec();
62 SourceCode source
= makeSource(script
);
63 RefPtr
<EvalNode
> evalNode
= globalObject
->globalData()->parser
->parse
<EvalNode
>(globalCallFrame
, globalObject
->debugger(), source
, &errLine
, &errMsg
);
65 return Error::create(globalCallFrame
, SyntaxError
, errMsg
, errLine
, source
.provider()->asID(), source
.provider()->url());
67 return globalObject
->globalData()->interpreter
->execute(evalNode
.get(), globalCallFrame
, globalObject
, globalCallFrame
->scopeChain(), &exception
);