Files
tinygo/compiler
Ayke van Laethem ea8e4079bc reflect: add support for linked lists
Linked lists are usually implemented as follows:

    type linkedList struct {
        next *linkedList
        data int // whatever
    }

This caused a stack overflow while writing out the reflect run-time type
information. This has now been fixed by splitting the allocation of a
named type number from setting the underlying type in the sidetable.
2019-08-11 15:00:43 +02:00
..
2019-06-20 13:30:38 +02:00
2019-04-26 08:52:10 +02:00
2019-08-04 17:12:07 +02:00
2019-08-11 15:00:43 +02:00
2019-08-04 18:15:06 +02:00