LEFT | RIGHT |
(no file at all) | |
1 // Copyright 2009 The Go Authors. All rights reserved. | 1 // Copyright 2009 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 /* | 5 /* |
6 * Runtime type representation; master is type.go | 6 * Runtime type representation; master is type.go |
7 * | 7 * |
8 * The Type*s here correspond 1-1 to type.go's *rtype. | 8 * The Type*s here correspond 1-1 to type.go's *rtype. |
9 */ | 9 */ |
10 | 10 |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 bool dotdotdot; | 91 bool dotdotdot; |
92 Slice in; | 92 Slice in; |
93 Slice out; | 93 Slice out; |
94 }; | 94 }; |
95 | 95 |
96 struct PtrType | 96 struct PtrType |
97 { | 97 { |
98 Type; | 98 Type; |
99 Type *elem; | 99 Type *elem; |
100 }; | 100 }; |
| 101 |
| 102 // Here instead of in runtime.h because it uses the type names. |
| 103 bool runtime·addfinalizer(void*, FuncVal *fn, uintptr, Type*, PtrType*); |
| 104 bool runtime·getfinalizer(void *p, bool del, FuncVal **fn, uintptr *nret, Typ
e**, PtrType**); |
LEFT | RIGHT |