1. 14 Oct, 2008 2 commits
  2. 13 Oct, 2008 1 commit
  3. 11 Oct, 2008 2 commits
  4. 10 Oct, 2008 13 commits
  5. 09 Oct, 2008 2 commits
    • Cary Hull's avatar
      Adding Mkdir. · f960840a
      Cary Hull authored
      R=rsc
      APPROVED=rsc
      DELTA=21  (21 added, 0 deleted, 0 changed)
      OCL=16794
      CL=16803
      f960840a
    • Robert Griesemer's avatar
      - make optional semicolons explicit in grammar in all places · aed247fd
      Robert Griesemer authored
      except in statement list, where it is expressed in words
      - allow for empty import, const, type, and var decl lists inside ()'s
      - fixed grammar for inc/dec statements
      - added empty statement as it appears to be accepted by 6g
      
      R=r
      DELTA=75  (23 added, 21 deleted, 31 changed)
      OCL=16785
      CL=16785
      aed247fd
  6. 08 Oct, 2008 11 commits
  7. 07 Oct, 2008 7 commits
  8. 06 Oct, 2008 2 commits
    • Russ Cox's avatar
      change type names to go live at the name, so that · 74e2e087
      Russ Cox authored
      	type T struct {
      		next *T
      	}
      
      and
      
      	type T *struct {
      		next T
      	}
      
      are valid without needing forward declarations.
      
      add "type T struct" syntax for forward struct declarations.
      
      add "type T interface" syntax, but commented out
      	(need to fix semicolons first)
      
      R=ken
      DELTA=452  (259 added, 115 deleted, 78 changed)
      OCL=16580
      CL=16584
      74e2e087
    • Rob Pike's avatar
      change in spec results in non-error · 717de799
      Rob Pike authored
      R=gri
      DELTA=4  (0 added, 3 deleted, 1 changed)
      OCL=16565
      CL=16579
      717de799