Home
last modified time | relevance | path

Searched defs:SendStmt (Results 1 – 5 of 5) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/ir/
Dstmt.go447 type SendStmt struct { struct
448 miniStmt
449 Chan Node
450 Value Node
/aosp_15_r20/prebuilts/go/linux-x86/src/go/ast/
Dast.go638 SendStmt struct { struct
639 Chan Expr
640 Arrow token.Pos // position of "<-"
641 Value Expr
770 func (s *SendStmt) Pos() token.Pos { return s.Chan.Pos() }
797 func (s *SendStmt) End() token.Pos { return s.Value.End() }
856 func (*SendStmt) stmtNode() {}
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
Dnodes.go365 SendStmt struct { struct
366 Chan, Value Expr // Chan <- Value
367 simpleStmt
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/typecheck/
Dstmt.go519 func tcSend(n *ir.SendStmt) ir.Node {
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/walk/
Dexpr.go859 func walkSend(n *ir.SendStmt, init *ir.Nodes) ir.Node {