1. 02 Mar, 2013 3 commits
  2. 01 Mar, 2013 35 commits
  3. 28 Feb, 2013 2 commits
    • Rob Pike's avatar
      doc/articles/image_package.html: fix x/y mistake · 2145cd51
      Rob Pike authored
      Fixes #4942.
      
      R=golang-dev, adg
      CC=golang-dev
      https://golang.org/cl/7444047
      2145cd51
    • Robert Griesemer's avatar
      go/types: fix type-checking of shift expressions · 3a9fcc45
      Robert Griesemer authored
      Completely rethought shift expression type checking.
      Instead of attempting to type-check them eagerly, now
      delay the checking of untyped constant lhs in non-
      constant shifts until the final expression type
      becomes clear. Once it is clear, update the respective
      expression tree with the final (not untyped) type and
      check respective shift lhs' where necessary.
      
      This also cleans up another conundrum: How to report
      the type of untyped constants as it changes from
      untyped to typed. Now, Context.Expr is only called
      for an expresion x once x has received its final
      (not untyped) type (for constant initializers, the
      final type may still be untyped).
      
      With this CL all remaining std lib packages that
      did not typecheck due to shift errors pass now.
      
      TODO: There's a lot of residual stuff that needs
      to be cleaned up but with this CL all tests pass
      now.
      
      R=adonovan, axwalk
      CC=golang-dev
      https://golang.org/cl/7381052
      3a9fcc45