aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/reflect/value.go
AgeCommit message (Collapse)Author
2019-06-18Add test command to tinygo (#243)Carolyn Van Slyck
* Add test command to tinygo
2019-06-03reflect: stub out reflect.New and reflect.ZeroTomer Elmalem
2019-04-13all: check formatting on CIAyke van Laethem
2019-03-23reflect: add stubs for Value.MapRangeAyke van Laethem
This object was added in Go 1.12 and is required by the fmt package.
2019-02-05reflect: implement Value.Set*() for basic typesAyke van Laethem
2019-02-05reflect: add limited support for all type kindsAyke 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-05reflect: support slices and indexing of strings and slicesAyke van Laethem
2019-02-05reflect: add support for non-named basic typesAyke van Laethem
2019-02-05reflect: add reflect.TypeOfAyke van Laethem
This is the beginning of true reflection support in TinyGo.
2018-11-03reflect: add more stubs for encoding/binaryAyke 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-23reflect: add stub reflect packageAyke van Laethem
This is necessary to compile fmt. However, it cannot link yet.