示例#1
0
void Debugger::beforeExecutingContent(Interpreter& interpreter, const XERCESC_NS::DOMElement* execContent) {
	handleExecutable(interpreter, execContent, Breakpoint::BEFORE);
}
示例#2
0
void Debugger::afterExecutingContent(Interpreter& interpreter, const XERCESC_NS::DOMElement* execContent) {
	handleExecutable(interpreter, execContent, Breakpoint::AFTER);
}
示例#3
0
文件: Debugger.cpp 项目: juehv/uscxml
void Debugger::afterExecutingContent(Interpreter interpreter, const Arabica::DOM::Element<std::string>& content) {
	handleExecutable(interpreter, Arabica::DOM::Element<std::string>(content), Breakpoint::AFTER);
}