1. 26 Aug, 2011 2 commits
  2. 25 Aug, 2011 15 commits
  3. 24 Aug, 2011 19 commits
  4. 23 Aug, 2011 4 commits
    • Andrew Gerrand's avatar
      misc/dashboard: remove limit for json package list · 39194de8
      Andrew Gerrand authored
      R=golang-dev, bradfitz
      CC=golang-dev
      https://golang.org/cl/4937048
      39194de8
    • Robert Griesemer's avatar
    • Robert Griesemer's avatar
      go/ast: adjustments to filter function · cde06f54
      Robert Griesemer authored
      CL 4938041 made some incorrect changes to the filter
      function which caused a different doc/codelab/wiki/index.html
      file to be generated.
      
      Added FilterFileExports and FilterPackageExports function.
      Same as the existing FileExpors/PackageExports functions
      but using shared code. The old functions will be removed
      in the next CL.
      
      R=r, rsc
      CC=golang-dev
      https://golang.org/cl/4932048
      cde06f54
    • Julian Phillips's avatar
      gc: fix pc/line table · b99d7229
      Julian Phillips authored
      When a line directive was encountered we would push a new 'z' entry into
      the history to indicate the start of new file attributation, and a 'Z'
      entry to change line numbering.  However we didn't pop the 'z' entry, so
      we were actually corrupting the history stack.  The most obvious
      occurance of this was in the code that build the symbol tables for the
      DWARF information - where an internal stack in the linker would overflow
      when more than a few line directives were encountered in a single stack
      (Issue 1878).  So now we pop the 'z' entry when we encounter the end of
      the file that the directive was in, which maintains the history stack
      integrity.
      
      Also, although new 'z' entries for new files had relative paths
      expanded, the same was not done for line directives.  Now we do it for
      line directives also - so that the now correct DWARF information has the
      full path available.
      
      Fixes #1878.
      
      R=rsc
      CC=golang-dev
      https://golang.org/cl/4938042
      b99d7229