如何知道Rhino 调试器中的脚本执行已完成?

发布于 2024-12-10 03:40:32 字数 118 浏览 0 评论 0原文

有没有什么方法可以发现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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

岛徒 2024-12-17 03:40:32

在脚本完成后运行的 org.eclipse.wst.jsdt.debug.rhino.debugger.RhinoDebuggerImpl 类中有一个方法 contextReleased(Context context)

There is a method contextReleased(Context context) in org.eclipse.wst.jsdt.debug.rhino.debugger.RhinoDebuggerImpl class in run after completion of Script..

咽泪装欢 2024-12-17 03:40:32

您尝试过“print()”方法吗?

此方法打印到 Rhino 调试器控制台。

例如

js> print("Start"); /* Anything. */; print("End");

,如果控制台打印“End”,则脚本完成。

Do you tried "print()" mothod?

This method print to Rhino Debugger Console.

For Example

js> print("Start"); /* Anything. */; print("End");

If console printed "End", script is complete.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文