1. 22 Apr, 2010 4 commits
  2. 21 Apr, 2010 16 commits
  3. 20 Apr, 2010 2 commits
  4. 19 Apr, 2010 5 commits
  5. 18 Apr, 2010 3 commits
  6. 16 Apr, 2010 6 commits
  7. 15 Apr, 2010 4 commits
    • Russ Cox's avatar
      flag: eliminate unnecessary structs · a318f9d3
      Russ Cox authored
      R=r
      CC=golang-dev
      https://golang.org/cl/872045
      a318f9d3
    • Andrei Vieru's avatar
      "godoc -src pkg_name" excludes duplicates entries · fffac807
      Andrei Vieru authored
      $ godoc xml | grep Copy\(\)
      func (c CharData) Copy() CharData
      func (c Comment) Copy() Comment
      func (d Directive) Copy() Directive
      func (p ProcInst) Copy() ProcInst
      func (e StartElement) Copy() StartElement
      --------------------------------------------
      $ godoc -src xml | grep Copy\(\)
      func (c CharData) Copy() CharData
      --------------------------------------------
      $ godoc -src xml Copy
      func (c CharData) Copy() CharData { return CharData(makeCopy(c)) }
      --------------------------------------------
      The command "godoc -src pkg_name" should output the interface of the named package, but it excludes all duplicate entries. Also the command "godoc -src pkg_name method_name" will output the source code only for one method even if there are more of them with the same name in the same package. This patch set fixes this issue.
      
      R=gri
      CC=golang-dev
      https://golang.org/cl/883051
      fffac807
    • Kai Backman's avatar
      df3a5440
    • Kai Backman's avatar
      support for printing floats: · 26e84642
      Kai Backman authored
      fmt.Printf("float32 %f\n", float32(1234.56789))
      fmt.Printf("float64 %f\n", float64(1234.56789))
      ->
      float32 1234.567871
      float64 1234.567890
      
      this is a snapshot. extended instruction support, corner cases
      and fixes coming in subseuent cls.
      
      R=rsc
      CC=dpx, golang-dev
      https://golang.org/cl/876045
      26e84642