You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As noted in PR #16, the play function in the top-level scottkit program invokes decompile (discarding its output) to force resolution of entity names in the same order that they will be resolved in decompilation:
def play(game)
# Decompile (and discard result) to get entity names resolved in
# right order. This ensures that debugging output that uses these
# names will use them in the same way as decompiler output.
dummy = StringIO.new
game.decompile(dummy)
game.play
end
I need to look into this, figure out why it's happening, and (if necessary) make some kind of canonicalise_entites method that does this.
The text was updated successfully, but these errors were encountered:
As noted in PR #16, the
play
function in the top-levelscottkit
program invokesdecompile
(discarding its output) to force resolution of entity names in the same order that they will be resolved in decompilation:I need to look into this, figure out why it's happening, and (if necessary) make some kind of
canonicalise_entites
method that does this.The text was updated successfully, but these errors were encountered: