LEFT | RIGHT |
(Both sides are equal) |
1 // cmd/cc/godefs.cc | 1 // cmd/cc/godefs.cc |
2 // | 2 // |
3 // derived from pickle.cc which itself was derived from acid.cc. | 3 // derived from pickle.cc which itself was derived from acid.cc. |
4 // | 4 // |
5 // Copyright © 1994-1999 Lucent Technologies Inc. All rights reserved. | 5 // Copyright © 1994-1999 Lucent Technologies Inc. All rights reserved. |
6 // Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net) | 6 // Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net) |
7 // Portions Copyright © 1997-1999 Vita Nuova Limited | 7 // Portions Copyright © 1997-1999 Vita Nuova Limited |
8 // Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuov
a.com) | 8 // Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuov
a.com) |
9 // Portions Copyright © 2004,2006 Bruce Ellis | 9 // Portions Copyright © 2004,2006 Bruce Ellis |
10 // Portions Copyright © 2005-2007 C H Forsyth (forsyth@terzarima.net) | 10 // Portions Copyright © 2005-2007 C H Forsyth (forsyth@terzarima.net) |
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 if(strchr(s->name, '$') != nil) // TODO(lvd) | 356 if(strchr(s->name, '$') != nil) // TODO(lvd) |
357 break; | 357 break; |
358 Bprint(&outbuf, "var %U\t", s->name); | 358 Bprint(&outbuf, "var %U\t", s->name); |
359 printtypename(t); | 359 printtypename(t); |
360 Bprint(&outbuf, "\n"); | 360 Bprint(&outbuf, "\n"); |
361 break; | 361 break; |
362 } | 362 } |
363 break; | 363 break; |
364 } | 364 } |
365 } | 365 } |
LEFT | RIGHT |