1. 22a5c78 rename sys functions to runtime, because they are in package runtime. by Russ Cox · 15 years ago
  2. 2372408 sort errors by line number by Russ Cox · 15 years ago
  3. 680ee6a add & fix bug208, from ken. fix bug198. by Russ Cox · 15 years ago
  4. d515063 better handling of mistaken top-level variable by Russ Cox · 15 years ago
  5. e7f9452 missing error checking related to ([...]int){...} by Russ Cox · 16 years ago
  6. aa6e81dd a few more blank tests by Russ Cox · 16 years ago
  7. e780fa8 defining package block names must override universe block names. by Russ Cox · 16 years ago
  8. 5438be4 write-only variable _ by Russ Cox · 16 years ago
  9. d66d65d bug132 by Russ Cox · 16 years ago
  10. 59e2e54 fix bug195 by Russ Cox · 16 years ago
  11. 38df5ec try to do better line number reporting by Russ Cox · 16 years ago
  12. 311c0b4 6g/6l: add go type information to symbol table. by Russ Cox · 16 years ago
  13. a926102 delete code for forward type declarations by Russ Cox · 16 years ago
  14. 66bb399 whole-package compilation by Russ Cox · 16 years ago
  15. 6c2738e bug181 - type T *struct { T } is an invalid embedded type by Russ Cox · 16 years ago
  16. 99eca57 clean up a few error messages; by Russ Cox · 16 years ago
  17. b648716 forward declarations not necessary. by Russ Cox · 16 years ago
  18. 2609731 delay range processing. old2new is gone by Russ Cox · 16 years ago
  19. 54b4037 delay := processing by Russ Cox · 16 years ago
  20. a121410 make Syms smaller. by Russ Cox · 16 years ago
  21. aa347c4 move various bits of code around by Russ Cox · 16 years ago
  22. dbe004e delayed evaluation of var blocks by Russ Cox · 16 years ago
  23. 9dc22b6 more 6g reorg; checkpoint. by Russ Cox · 16 years ago
  24. a2b8e38 checkpoint; still plenty to clean up by Russ Cox · 16 years ago
  25. ff3a73b typechecking checkpoint. by Russ Cox · 16 years ago
  26. 056940d convert walkexpr to take Node**; drop indir by Russ Cox · 16 years ago
  27. 9346c6d make every func literal expression allocate, by Russ Cox · 16 years ago
  28. 0b2683d do not insert implicit "return;" in empty function body by Russ Cox · 16 years ago
  29. 35e5906 another baby step. excluding import data, no yacc node has type Type* anymore. by Russ Cox · 16 years ago
  30. db508ccbf baby step: const decls can refer to future consts in the same factored block by Russ Cox · 16 years ago
  31. e52e9ca another step toward eliminating forward declarations. by Russ Cox · 16 years ago
  32. be16caf step toward no function prototypes. by Russ Cox · 16 years ago
  33. 0dadc4f cleanup in preparation for new scoping. by Russ Cox · 16 years ago
  34. ed124a9 segfault by Ken Thompson · 16 years ago
  35. a68b1da another nil reference by Ken Thompson · 16 years ago
  36. a1b6482 bug167 by Russ Cox · 16 years ago
  37. ef4ddd6 another piece for cross-file forward struct declarations. by Russ Cox · 16 years ago
  38. 9435dc2 allow forward declaration of struct in another file (in the same package). by Russ Cox · 16 years ago
  39. 480f512 bug165 by Russ Cox · 16 years ago
  40. fa6df47 package main const foo = []int{1,2} by Russ Cox · 16 years ago
  41. 4bce6d4 package main func foo(y) { } by Russ Cox · 16 years ago
  42. 466dd8d 6g crash re mail from gri jun 18. by Ken Thompson · 16 years ago
  43. 30a28ae b/1909731 by Russ Cox · 16 years ago
  44. 8f4af6d gc: grammar cleanup: by Russ Cox · 16 years ago
  45. 2f2577a bug161, fixed by Russ Cox · 16 years ago
  46. e261371 detect recursive initialization by Ken Thompson · 16 years ago
  47. e81d97e clean up gmove: by Russ Cox · 16 years ago
  48. a8e4ed6 8g: 64-bit arithmetic and assorted bug fixes; by Russ Cox · 16 years ago
  49. 4beac99 simplifying grammar: delete LBASETYPE and LACONST. take 2 by Russ Cox · 16 years ago
  50. ca2fe5d Automated g4 rollback of changelist 29302. by Russ Cox · 16 years ago
  51. 2a4dcff simplifying grammar: delete LBASETYPE and LACONST by Russ Cox · 16 years ago
  52. a016081 added key:val extension to structure and array literals by Ken Thompson · 16 years ago
  53. b91a043 static initialization of slices by Ken Thompson · 16 years ago
  54. 62231e9 static initialization with DATA statements by Ken Thompson · 16 years ago
  55. 52b0f77 static initialization structure set up - no change yet by Ken Thompson · 16 years ago
  56. b3533df 6g: by Russ Cox · 16 years ago
  57. d4fa253 eqtype(t1, t2, 0) => eqtype(t1, t2) by Russ Cox · 16 years ago
  58. 401a95a if a struct s contains an anonymous interface value by Russ Cox · 16 years ago
  59. 88a1aa8 6g: error messages by Russ Cox · 16 years ago
  60. a6ba5ec 6g: new interface rules (code got simpler!) by Russ Cox · 16 years ago
  61. f821e3c 6g tweaks by Russ Cox · 16 years ago
  62. 49f7494 code optmization drip init function if it doesnt do anything by Ken Thompson · 16 years ago
  63. 3657061 change representation of strings by Ken Thompson · 16 years ago
  64. 0768770 type n t; by Russ Cox · 16 years ago
  65. 416b275 use _f007·filename for func literals. by Russ Cox · 16 years ago
  66. aacdc25 fix http://b/1748082 by Russ Cox · 16 years ago
  67. 941ed00 closure bug: carry along outnamed flag. by Russ Cox · 16 years ago
  68. e224b1e don't crash on unsafe.Alignof(struct{x float}{0}.x) by Russ Cox · 16 years ago
  69. 8f194bf make 6g constants behave as ken proposes. (i hope.) by Russ Cox · 16 years ago
  70. 3c0fc40 fix unsafe.Sizeof("abc") by Ken Thompson · 16 years ago
  71. b4af09a embedded interface types in interfaces. by Russ Cox · 16 years ago
  72. 651972b Implement unsafe.Alignof. by Ian Lance Taylor · 16 years ago
  73. 8a70545 unsafe.Sizeof and unsafe.Offsetof by Ken Thompson · 16 years ago
  74. 0970c46 closures - 6g support by Russ Cox · 16 years ago
  75. aab26a5 do not generate Init proto for sys and unsafe. by Russ Cox · 16 years ago
  76. 4a43198 update compiler to new func rules by Russ Cox · 16 years ago
  77. 391425a if take address of local, move to heap. by Russ Cox · 16 years ago
  78. f1fe21a bug134 by Russ Cox · 16 years ago
  79. 4efad58 bug133 by Russ Cox · 16 years ago
  80. 61590c4 disallow P.t for lowercase t and not our package P. by Russ Cox · 16 years ago
  81. 0183baa * delete export * rename init functions by Russ Cox · 16 years ago
  82. aec4d31 disallow other package's names in method calls by Russ Cox · 16 years ago
  83. 06869ee disallow other package's names in struct field dot. by Russ Cox · 16 years ago
  84. c1e7e27 don't crash on: by Russ Cox · 16 years ago
  85. 07d344e remove export name-list statement. by Russ Cox · 16 years ago
  86. a91af04 6g cleanup suggested by ken. remove TPTR wrapper around TMAP, TCHAN, TSTRING. by Russ Cox · 16 years ago
  87. e512481 second pass on interface fixes and tests. by Russ Cox · 16 years ago
  88. 20595ac many interface bug fixes. by Russ Cox · 16 years ago
  89. 4026500 arrays by Ken Thompson · 16 years ago
  90. c7ab332 restrict declarations of type map/chan/string (they must be pointers) by Ken Thompson · 16 years ago
  91. cb64ec5 only generate non-trivial signatures in the by Russ Cox · 16 years ago
  92. 7dd62cb 2 minor bugs by Ken Thompson · 16 years ago
  93. 57bd0da bug126 by Ken Thompson · 16 years ago
  94. 26b357c range statement by Ken Thompson · 16 years ago
  95. c597845 const/var/iota declarations as discussed by Ken Thompson · 16 years ago
  96. d3f6093 package-local declarations using keyword "package". by Russ Cox · 16 years ago
  97. 7921457 width fixes. by Russ Cox · 16 years ago
  98. 0eda21a change minimum sethi/ullman number to 1 by Russ Cox · 16 years ago
  99. c249a8de rename various magic names. by Russ Cox · 16 years ago
  100. f27aaf4 structure field annotation strings by Russ Cox · 16 years ago