An error occurred fetching the project authors.
  1. 04 Feb, 2009 1 commit
  2. 30 Jan, 2009 2 commits
  3. 29 Jan, 2009 1 commit
  4. 27 Jan, 2009 2 commits
  5. 26 Jan, 2009 1 commit
  6. 21 Jan, 2009 1 commit
    • Russ Cox's avatar
      disallow P.t for lowercase t and not our package P. · 61590c4c
      Russ Cox authored
      implement hiding lowercase methods m in
      signatures by adding in a hash of the package name
      to the type hash code.
      
      remove remaining checks for internally-generated _ names:
      they are all gone.
      
      R=ken
      OCL=23236
      CL=23238
      61590c4c
  7. 20 Jan, 2009 1 commit
  8. 09 Jan, 2009 4 commits
  9. 08 Jan, 2009 1 commit
    • Russ Cox's avatar
      many interface bug fixes. · 20595ac4
      Russ Cox authored
      also, after
      	func g() (int, int)
      	func f(int, int)
      allow
      	f(g())
      and
      	func h() (int, int) { return g() }
      
      R=ken
      DELTA=356  (252 added, 26 deleted, 78 changed)
      OCL=22319
      CL=22325
      20595ac4
  10. 06 Jan, 2009 1 commit
  11. 30 Dec, 2008 1 commit
  12. 20 Dec, 2008 1 commit
    • Russ Cox's avatar
      [] and struct in interfaces. · c3077f76
      Russ Cox authored
      other [] cleanup.
      
      convert() is gone.
      
      R=r
      DELTA=352  (144 added, 68 deleted, 140 changed)
      OCL=21660
      CL=21662
      c3077f76
  13. 19 Dec, 2008 5 commits
  14. 09 Dec, 2008 1 commit
  15. 06 Dec, 2008 1 commit
    • Ken Thompson's avatar
      allowed syntax for range · b79272d9
      Ken Thompson authored
      a range m (implies :=)
      a,b range m (implies :=)
      a:b range m (implies :=)
      
      a := range m
      a,b := range m
      a:b := range m
      
      a = range m
      a,b = range m
      a:b = range m
      
      R=r
      OCL=20676
      CL=20676
      b79272d9
  16. 18 Nov, 2008 1 commit
  17. 15 Nov, 2008 1 commit
  18. 06 Nov, 2008 3 commits
  19. 05 Nov, 2008 2 commits
    • Russ Cox's avatar
      fix renamed-package bug in exported names: · 553c98dc
      Russ Cox authored
      always show original name
      
      R=ken
      OCL=18603
      CL=18603
      553c98dc
    • Russ Cox's avatar
      6g interface changes: · 1983121b
      Russ Cox authored
      	* allow conversion between nil interface and any type.
      	* mark signatures as DUPOK so that multiple .6 can
      	  contain sigt.*[]byte and only one gets used.
      
      R=ken
      OCL=18538
      CL=18542
      1983121b
  20. 03 Nov, 2008 1 commit
    • Russ Cox's avatar
      rename various magic names. · c249a8de
      Russ Cox authored
      	sigi and sigt:
      	sys·sigi_inter -> sigi·inter
      	sys·sigt_int -> sigt·int
      	Package·sigt_Type -> sigt·Package.Type
      
      	local type T in file x.go T_x -> T·x
      	second one T_x_1 -> T·x·1
      
      	method names M on T  T_M -> T·M
      
      correctly handle local embedded types
      
      init functions are the only place left that use underscores
      
      R=ken
      OCL=18377
      CL=18377
      c249a8de
  21. 01 Nov, 2008 2 commits
  22. 31 Oct, 2008 2 commits
  23. 30 Oct, 2008 3 commits
  24. 29 Oct, 2008 1 commit