Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-06-18 | Add test command to tinygo (#243) | Carolyn Van Slyck | |
* Add test command to tinygo | |||
2019-06-03 | reflect: stub out reflect.New and reflect.Zero | Tomer Elmalem | |
2019-04-13 | all: check formatting on CI | Ayke van Laethem | |
2019-03-23 | reflect: add stubs for Value.MapRange | Ayke van Laethem | |
This object was added in Go 1.12 and is required by the fmt package. | |||
2019-02-05 | reflect: implement Value.Set*() for basic types | Ayke van Laethem | |
2019-02-05 | reflect: add limited support for all type kinds | Ayke van Laethem | |
This commit makes sure all Go types can be encoded in the interface type code, so that Type.Kind() always returns a proper type kind for any non-nil interface. | |||
2019-02-05 | reflect: support slices and indexing of strings and slices | Ayke van Laethem | |
2019-02-05 | reflect: add support for non-named basic types | Ayke van Laethem | |
2019-02-05 | reflect: add reflect.TypeOf | Ayke van Laethem | |
This is the beginning of true reflection support in TinyGo. | |||
2018-11-03 | reflect: add more stubs for encoding/binary | Ayke van Laethem | |
Package encoding/binary uses reflect and is needed by image/png, but image/png doesn't actually need the reflect-using parts of encoding/binary. So stub them out for now to get it to compile. Thanks to Stephen Solka who wrote the patch. | |||
2018-10-23 | reflect: add stub reflect package | Ayke van Laethem | |
This is necessary to compile fmt. However, it cannot link yet. |