Files
tinygo/compiler
Ayke van Laethem 5b42871baa compiler: support all kinds of recursive types
Previously we only supported recursive types in structs. But there can
be other kinds of recursive types, like slices:

    type RecursiveSlice []RecursiveSlice

This doesn't involve structs, so it led to infinite recursion in the
compiler. This fix avoids recursion at the proper level: at the place
where the named type is defined.
2023-03-18 17:53:47 +01:00
..
2022-10-19 22:23:19 +02:00
2022-10-19 22:23:19 +02:00
2021-09-27 15:47:12 +02:00
2023-01-18 08:24:42 +01:00
2023-01-18 08:24:42 +01:00