MCPcopy Create free account
hub / github.com/golang/mobile / Func

Struct Func

internal/importers/java/java.go:83–97  ·  view source on GitHub ↗

Func is a Java static function or method or constructor.

Source from the content-addressed store, hash-verified

81
82// Func is a Java static function or method or constructor.
83type Func struct {
84 FuncSig
85 ArgDesc string
86 // Mangled JNI name
87 JNIName string
88 Static bool
89 Abstract bool
90 Final bool
91 Public bool
92 Constructor bool
93 Params []*Type
94 Ret *Type
95 Decl string
96 Throws string
97}
98
99// FuncSig uniquely identifies a Java Func.
100type FuncSig struct {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected