Pharo 10 及以上版本中 GTInspector 的替代品或替代品是什么?

问题描述 投票:0回答:1

我安装的一个较旧的 Pharo 软件包使用 GTInspector,它似乎是 Pharo 10 之前默认安装的一部分。

在 Pharo 10 中尝试安装 GTInspector 会安装大部分当前的 Glamorous Toolkit 软件包,因此我怀疑一定有旧版本的 GTInspector 及其与 Pharo 10 兼容的相关工具,或者为 Pharo 10 提供了 GTInspector 的替代品。

调用 GTInspector 的代码短语是这两个:

openInspector ifTrue: [
    self bringToFront.
    GTInspector inspect: result ].
^ {
      (#message -> result asString).
      (#status -> status) } asDictionary

apiEvalBindings: req

    self bringToFront.
    GTInspector inspect: interactionModel bindings.
    ^ {
          (#status -> #success).
          (#message -> 'Inspector has been opened.') } asDictionary

Pharo 中是否有可用的此类软件包或当前的替代方案?

substitution pharo inspector
1个回答
0
投票

StInspector
。或者,如果您在 Pharo 12,
StInspectorPresenter

© www.soinside.com 2019 - 2024. All rights reserved.