MCPcopy Create free account
hub / github.com/google/gapid / CallParameters

Method CallParameters

gapil/semantic/function.go:41–46  ·  view source on GitHub ↗

CallParameters returns the full set of parameters with the return value filtered out.

()

Source from the content-addressed store, hash-verified

39// CallParameters returns the full set of parameters with the return value
40// filtered out.
41func (f *Function) CallParameters() []*Parameter {
42 if f.Return.Type == VoidType {
43 return f.FullParameters
44 }
45 return f.FullParameters[0 : len(f.FullParameters)-1]
46}
47
48// Parameter represents a single parameter declaration for a function.
49type Parameter struct {

Callers 9

VerifyCommandFunction · 0.95
subroutineMethod · 0.80
buildFunctionsMethod · 0.80
buildCallMethod · 0.80
WriteFunctionMethod · 0.80
StringMethod · 0.80
CompletionsMethod · 0.80
SignaturesMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected