Files
tinygo/testdata
Ayke van Laethem 82be43f4e6 compiler: implement deferring of immediately-applied closures
This is a common operation:

    freevar := ...
    defer func() {
        println("I am deferred:", freevar)
    }()

The function is thus an immediately applied closure. Only this form is
currently supported, support for regular (fat) function pointers should
be trivial to add but is not currently implemented as it wasn't
necessary to get fmt to compile.
2018-10-22 14:06:51 +02:00
..
2018-09-29 00:11:58 +02:00
2018-09-29 00:11:58 +02:00
2018-10-22 13:49:03 +02:00
2018-10-22 13:49:03 +02:00
2018-10-22 13:49:03 +02:00
2018-10-22 13:49:03 +02:00
2018-10-20 17:22:51 +02:00
2018-10-20 17:22:51 +02:00