aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/reflect
AgeCommit message (Expand)Author
2011-10-18[release-branch.r58] reflect: disallow Interface method on Value obtained via...release.r58.2Andrew Gerrand
2011-05-30pkg: spelling tweaks, I-ZRobert Hencke
2011-05-17reflect: make allocation test less fragile.Rob Pike
2011-05-03reflect: allow unexported key in Value.MapIndexRuss Cox
2011-04-28syslog: fix skipping of net testsGustavo Niemeyer
2011-04-27reflect: Fix Copy of arraysGustavo Niemeyer
2011-04-25reflect: rename Typeof, NewValue -> TypeOf, ValueOfRuss Cox
2011-04-21gc: correct handling of unexported method names in embedded interfacesRuss Cox
2011-04-20reflect: add Type.Implements, Type.AssignableTo, Value.CallSlice; make Set ma...Russ Cox
2011-04-20reflect: update CanAddr, CanSet documentationRuss Cox
2011-04-20src/pkg: make package doc comments consistently start with "Package foo".Nigel Tao
2011-04-18reflect: allow Slice of arraysRuss Cox
2011-04-18reflect: more efficient; cannot Set result of NewValue anymoreRuss Cox
2011-04-13reflect: inline method implementationsRuss Cox
2011-04-08reflect: new Type and Value definitionsRuss Cox
2011-03-11go code: replace closed(c) with x, ok := <-cRuss Cox
2011-03-03reflect: add PtrTo, add Value.Addr (old Addr is now UnsafeAddr)Russ Cox
2011-02-24reflect: add pointer word to CommonTypeRuss Cox
2011-02-22reflect: add a secret method to ArrayOrSliceType.Rob Pike
2011-02-16reflect: add a couple of sentences explaining how Methods operate.Rob Pike
2011-01-19delete float, complex - code changesRuss Cox
2010-12-15reflect: remove unnecessary indirection in TestCopy.Nigel Tao
2010-12-15reflect: add Append and AppendSlice functions.Nigel Tao
2010-12-13gc: align structs according to max alignment of fieldsRuss Cox
2010-12-12reflect: rename reflect.ArrayCopy to be reflect.Copy.Nigel Tao
2010-12-08throughout: simplify two-variable ranges with unused second variableRyan Hitchman
2010-12-07throughout: fix broken calls to Printf etc.Rob Pike
2010-11-12 Remove unnecessary casts in Get() methods.Kyle Consalus
2010-10-22gofmt -s -w src miscRobert Griesemer
2010-10-19reflect: add InterfaceValue.Get to enable setting of an interfaceRob Pike
2010-09-28gc: fix reflect table method receiverRuss Cox
2010-09-27gc: eliminate duplicates in method tableRuss Cox
2010-08-18build: no required environment variablesRuss Cox
2010-08-17reflect: allow PtrValue.PointTo(nil)Robert Griesemer
2010-08-03gc: bug299, bug300Russ Cox
2010-06-21reflect: add Type.Bits method, add tags to prohibit conversionsRuss Cox
2010-06-20reflect: add Kind, remove Int8Type, Int8Value, etc.Russ Cox
2010-06-14remove uses of ... from tree, add one testRuss Cox
2010-05-21go/printer, gofmt: fix printing of labels,Robert Griesemer
2010-04-20reflect: implement Set(nil), SetValue(nil) for PtrValue and MapValueRuss Cox
2010-04-18reflect: add FieldByNameFuncRaif S. Naffah
2010-03-30simplify various code using new map index ruleRuss Cox
2010-03-30single argument panicRuss Cox
2010-03-24delete all uses of panicln by rewriting them using panic or,Rob Pike
2010-03-10reflect: typo in commentDean Prichard
2010-03-056g complex type usableKen Thompson
2010-03-02more on type complex.Ken Thompson
2010-03-02gofmt: experiment: align values in map composites where possibleRobert Griesemer
2010-02-24gofmt: don't print ()'s around function-typed results (not needed anymore)Robert Griesemer
2010-02-01gc: add ... T, rework plain ...Russ Cox