如何在 GNU Smalltalk 中查看对象/类/上下文浏览器?
我运行 get
现在看到空白屏幕。我期望有对象浏览器,但没有。我认为有一些命令可以做到这一点。
我怎样才能在 GNU Smalltalk 中看到那些对象/类/上下文浏览器?
I run get
and now I'm seeing blank screen. I expected object browser, but there isn't. I think there is some command for that.
How can I see those object/class/context browser in GNU Smalltalk?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 REPL 中,有一些工具可以检查代码和对象。例如:
将向您展示一个对象的内部结构。
如果您需要检索特定方法的代码,您可以这样做:
至于浏览器……好吧,您处于基于文本的 REPL 中,不存在代码浏览器之类的东西。不过,您可以尝试一下 gst-browser,它是 GNU-Smalltalk 的 GUI,包括浏览器、转录本、工作区、调试器、检查器等。但请考虑到它仍处于测试阶段!
干杯。
In the REPL, there are a couple of tools to inspect code and objects. For instance:
will show you the internals of anObject.
If you need to retrieve the code of a particular method, you can do:
As for a browser... well, you're in a text-based REPL, there is no such thing as a code browser. Still, you can give gst-browser a try, it's a GUI for GNU-Smalltalk that includes a Browser, Transcript, Workspace, Debugger, Inspector, etc. Take in account it's still in beta though!
Cheers.