An error occurred fetching the project authors.
- 04 Jun, 2008 1 commit
-
-
Rob Pike authored
add src/test dir SVN=121166
-
- 03 Apr, 2008 1 commit
-
-
Ken Thompson authored
declaration of a func does not exactly match the actual (or another foreward) declaration. the reason is that when there are 2 declarations of a function, the names of the parameters are taken from the first. thus func x(a int); followed by func x(b int) { ... } will have the parameter named "a" and "b" will be undefined. SVN=114788
-
- 01 Apr, 2008 1 commit
-
-
Ken Thompson authored
fixed error in symbol table in the second forward declaration of a function. SVN=114572
-
- 29 Mar, 2008 1 commit
-
-
Ken Thompson authored
automatic declaration leaking from one function to another SVN=114252
-
- 28 Mar, 2008 1 commit
-
-
Ken Thompson authored
-