1. 30 Jan, 2012 26 commits
  2. 29 Jan, 2012 11 commits
  3. 28 Jan, 2012 1 commit
  4. 27 Jan, 2012 2 commits
    • Brad Fitzpatrick's avatar
      os: remove SIGXXX signals variables. · a3fdd6e6
      Brad Fitzpatrick authored
      They're not portable, and pkg os is supposed to be portable.
      
      Fixes #2562
      
      R=golang-dev, mikioh.mikioh, r, n13m3y3r, rsc
      CC=golang-dev
      https://golang.org/cl/5574078
      a3fdd6e6
    • Robert Griesemer's avatar
      go/doc: don't show methods of exported anonymous fields · b3a5f9e5
      Robert Griesemer authored
      Added flag AllMethods: if not set (future default), embedded
      methods of exported (and thus visible) embedded fields are not
      shown in the final package documentation
      
      The actual change for AllMethods is just in sortedFuncs. All
      other changes are simplifications of the existing logic (mostly
      deletion of code): Because method conflicts due to embedding
      must always be detected, remove any premature elimination of
      types and methods. Instead collect all named types and all
      methods and do the filtering at the end.
      
      Miscellaneous:
      - renamed baseType -> namedType
      - streamline logic for recording embedded types
      - record embedded types via a map (simpler data structures)
      
      AllMethods is set by default; so the output is unchanged and
      the tests pass. The next CL will enable the AllMethods flag
      and have adjusted tests (and fix issue 2791).
      
      R=rsc
      CC=golang-dev
      https://golang.org/cl/5572076
      b3a5f9e5