1. 30 Nov, 2010 7 commits
  2. 29 Nov, 2010 5 commits
  3. 28 Nov, 2010 1 commit
  4. 27 Nov, 2010 1 commit
  5. 26 Nov, 2010 1 commit
  6. 24 Nov, 2010 1 commit
  7. 23 Nov, 2010 2 commits
  8. 22 Nov, 2010 4 commits
  9. 21 Nov, 2010 1 commit
  10. 20 Nov, 2010 1 commit
  11. 19 Nov, 2010 5 commits
  12. 18 Nov, 2010 8 commits
  13. 17 Nov, 2010 2 commits
  14. 13 Nov, 2010 1 commit
    • Robert Griesemer's avatar
      token/position: implemented Pos · 18ae6334
      Robert Griesemer authored
      A pos value represents a file-set specific, accurate
      source position value. It is 8x smaller in size than
      the corresponding Position value (4 bytes vs 32 bytes).
      
      Using Pos values instead of Position values in AST
      saves approx. 25MBytes of memory when running godoc
      on the current repository.
      
      This CL introduces the Pos, File, and FileSet data
      types; it does not affect existing code. Another
      (pending CL) will make the change to all dependent
      source files.
      
      Missing: tests
      
      R=r
      CC=golang-dev, rsc
      https://golang.org/cl/2936041
      18ae6334