Block asString: Don't show file:lineNumber label when block created on console
commit678ca1777db9e6547dba842031d8bf108a856627
authorJonathan Wright <jonathan@quag.geek.nz>
Tue, 24 Apr 2007 08:41:50 +0000 (24 20:41 +1200)
committerJonathan Wright <jonathan@quag.geek.nz>
Tue, 24 Apr 2007 08:41:50 +0000 (24 20:41 +1200)
tree6dc6c0bea674c4e145db5d2985d31d67fabed438
parent6e9cdedecb33976eac4689c85fe7c946083c2d03
Block asString: Don't show file:lineNumber label when block created on console

Use to be

    Io> f := method(x, x * 2 + 1)
    ==> # Command Line:2
    method(x,
        x * 2 + 1
    )

Now

    Io> f := method(x, x * 2 + 1)
    ==> method(x,
        x * 2 + 1
    )
libs/iovm/io/Block.io