(f *Func)
| 1044 | } |
| 1045 | |
| 1046 | func commonSig(f *Func) CommonSig { |
| 1047 | return CommonSig{ |
| 1048 | Params: f.Params, |
| 1049 | Ret: f.Ret, |
| 1050 | HasRet: f.Ret != nil, |
| 1051 | Throws: f.Throws != "", |
| 1052 | } |
| 1053 | } |
| 1054 | |
| 1055 | func (j *Importer) fillFuncSigs(funcs []*FuncSet) { |
| 1056 | for _, fs := range funcs { |