如何知道Rhino 调试器中的脚本执行已完成?
有没有什么方法可以发现Rhino调试器中的javascript执行...是否完成...这意味着如果我们创建一个类并且我希望通过这个类我发现整个脚本是否被执行...rhino API 有什么功能吗...
帮助
Is there is any way to find that the execution of javascript in Rhino debugger...Is complete or not...That means that if we make a class and i want that through this class i find that the whole script was execute or not ...is there is any function ...in rhino API...
Help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在脚本完成后运行的 org.eclipse.wst.jsdt.debug.rhino.debugger.RhinoDebuggerImpl 类中有一个方法
contextReleased(Context context)
。There is a method
contextReleased(Context context)
inorg.eclipse.wst.jsdt.debug.rhino.debugger.RhinoDebuggerImpl
class in run after completion of Script..您尝试过“print()”方法吗?
此方法打印到 Rhino 调试器控制台。
例如
,如果控制台打印“End”,则脚本完成。
Do you tried "print()" mothod?
This method print to Rhino Debugger Console.
For Example
If console printed "End", script is complete.