summaryrefslogtreecommitdiff
path: root/src/pkg/reflect/all_test.go
Commit message (Expand)AuthorAgeFilesLines
* build: move package sources from src/pkg to srcRuss Cox2014-09-081-3862/+0
* cmd/gc, runtime: treat slices and strings like pointers in garbage collectionRuss Cox2014-08-251-0/+18
* cmd/gc, runtime: refactor interface inlining decision into compilerRuss Cox2014-08-181-0/+3
* src, misc: applied gofmt -w -sRobert Griesemer2014-07-011-1/+1
* reflect: don't panic on delete from nil map.Keith Randall2014-05-201-0/+3
* reflect: test, fix access to nil mapsRuss Cox2014-05-191-0/+22
* reflect: fix variadic arg for funcs created by MakeFunc.Carl Chatfield2014-04-081-0/+17
* reflect, runtime: fix crash in GC due to reflect.call + precise GCRuss Cox2014-04-081-0/+81
* reflect: better error for walking through nil embedded struct pointerRuss Cox2014-02-211-0/+24
* reflect: add DeepEqual slice of slice inequality testShawn Smith2013-12-301-0/+1
* reflect: Add tests for Call with functions taking and returning structs.Michael Hudson-Doyle2013-12-171-0/+40
* reflect: test to make sure big Zero()-obtained objects are really zero.Keith Randall2013-12-021-0/+11
* reflect: prevent the callXX routines from calling makeFuncStubKeith Randall2013-12-021-0/+24
* reflect: test using a MakeFunc value in a couple of different waysIan Lance Taylor2013-10-041-0/+18
* reflect: add a test that gccgo mishandledIan Lance Taylor2013-10-031-0/+9
* reflect: add example for StructTagKamil Kisiel2013-09-231-3/+3
* reflect: test method calls on pointers to pointersIan Lance Taylor2013-09-171-6/+25
* reflect: Fix Convert to add indir bit when the value is actually aTodd Wang2013-08-211-7/+25
* all: protect alloc count tests by -testing.shortRob Pike2013-08-211-0/+9
* reflect: avoid allocation when interface's contents are not addressableRob Pike2013-08-091-0/+34
* reflect: Get rid of the test for the error message whenKeith Randall2013-08-051-11/+0
* runtime: reimplement reflect.call to not use stack splitting.Keith Randall2013-08-021-0/+11
* reflect: add Value.Slice3 and Value.SetCap methods, to match x[i:j:k]Russ Cox2013-07-011-0/+68
* runtime: introduce cnewarray() to simplify allocation of typed arraysDmitriy Vyukov2013-05-271-0/+19
* reflect: add garbage collection info in ChanOf, MapOf, PtrTo, SliceOfRuss Cox2013-03-261-0/+183
* reflect: implement method valuesRuss Cox2013-03-211-26/+276
* all: Skip AllocsPerRun tests if GOMAXPROCS>1.Albert Strasheim2013-03-061-0/+4
* testing: add AllocsPerRunKyle Lemons2013-02-021-15/+7
* all: set GOMAXPROCS to 1 when counting mallocsShenghou Ma2012-12-011-4/+2
* reflect: fix FieldByNameFuncRobert Griesemer2012-11-131-0/+15
* reflect: add ArrayOf, ChanOf, MapOf, SliceOfRuss Cox2012-11-131-0/+82
* gofmt: apply gofmt -w src miscRobert Griesemer2012-10-301-1/+1
* reflect: stop thinking that MaxFloat32 overflows float32.R?my Oudompheng2012-10-261-0/+39
* reflect: make Index and Slice accept stringsEvan Shaw2012-10-211-1/+23
* go/printer: parenthesize literal function types in conversionsRobert Griesemer2012-10-041-1/+1
* reflect: add MakeFunc (API CHANGE)Russ Cox2012-09-241-7/+40
* reflect: add Type.ConvertibleTo, Value.Convert (API CHANGE)Russ Cox2012-09-221-0/+447
* reflect: add SelectRuss Cox2012-09-181-0/+424
* reflect: faster FieldByName, FieldByNameFuncRuss Cox2012-09-051-3/+152
* cmd/gc: fix PkgPath of byte, rune typesRuss Cox2012-09-011-0/+23
* reflect: set GOMAXPROCS=1 in the malloc testDmitriy Vyukov2012-07-021-1/+2
* reflect: document and test TypeOf(nil)Rob Pike2012-04-231-0/+5
* reflect: make Value.Interface return immutable dataRuss Cox2012-03-011-0/+12
* reflect.DeepEqual: don't panic comparing functionsRob Pike2012-02-241-0/+10
* runtime: delete UpdateMemStats, replace with ReadMemStats(&stats).R?my Oudompheng2012-02-061-3/+7
* reflect: test that PtrTo returns types that match program typesIan Lance Taylor2012-02-031-0/+12
* gc: don't emit pkgpath for error type.David Symonds2012-01-201-2/+13
* reflect: fix Slice capGustavo Niemeyer2011-12-121-5/+17
* gc: disallow map/func equality via interface comparisonRuss Cox2011-12-061-2/+2
* gc: use gofmt spacing when printing map typeRuss Cox2011-12-021-3/+3