Searched defs:StarExpr (Results 1 – 3 of 3) sorted by relevance
653 type StarExpr struct { struct654 miniExpr655 X Node665 func (n *StarExpr) Implicit() bool { return n.flags&miniExprImplicit != 0 }666 func (n *StarExpr) SetImplicit(b bool) { n.flags.set(miniExprImplicit, b) }
386 StarExpr struct { struct387 Star token.Pos // position of "*"388 X Expr // operand498 func (x *StarExpr) Pos() token.Pos { return x.Star }532 func (x *StarExpr) End() token.Pos { return x.X.End() }563 func (*StarExpr) exprNode() {}
874 func tcStar(n *ir.StarExpr, top int) ir.Node {