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

Method call

gapil/bapi/decode.go:429–438  ·  view source on GitHub ↗
(callID uint64)

Source from the content-addressed store, hash-verified

427}
428
429func (d *decoder) call(callID uint64) (out *semantic.Call) {
430 d.build(d.content.Instances.Call, &d.inst.Call, callID, &out,
431 func(p *Call, s *semantic.Call) {
432 s.AST = d.astCall(p.Ast)
433 s.Target = d.callable(p.Target)
434 s.Type = d.ty(p.Type)
435 foreach(p.Arguments, d.expr, &s.Arguments)
436 })
437 return
438}
439
440func (d *decoder) callable(callableID uint64) (out *semantic.Callable) {
441 d.build(d.content.Instances.Callable, &d.inst.Callable, callableID, &out,

Callers 3

exprMethod · 0.95
statMethod · 0.95
nodeMethod · 0.95

Calls 5

buildMethod · 0.95
astCallMethod · 0.95
callableMethod · 0.95
tyMethod · 0.95
foreachFunction · 0.85

Tested by

no test coverage detected