Searched defs:ParenExpr (Results 1 – 11 of 11) sorted by relevance
470 type ParenExpr struct { struct471 miniExpr472 X Node482 func (n *ParenExpr) Implicit() bool { return n.flags&miniExprImplicit != 0 }483 func (n *ParenExpr) SetImplicit(b bool) { n.flags.set(miniExprImplicit, b) }
27 class ParenExpr; variable
2161 ParenExpr(SourceLocation l, SourceLocation r, Expr *val) in ParenExpr() function2169 explicit ParenExpr(EmptyShell Empty) in ParenExpr() function
2133 ParenExpr(SourceLocation l, SourceLocation r, Expr *val) in ParenExpr() function2141 explicit ParenExpr(EmptyShell Empty) in ParenExpr() function
2139 ParenExpr(SourceLocation l, SourceLocation r, Expr *val) in ParenExpr() function2147 explicit ParenExpr(EmptyShell Empty) in ParenExpr() function
2134 ParenExpr(SourceLocation l, SourceLocation r, Expr *val) in ParenExpr() function2142 explicit ParenExpr(EmptyShell Empty) in ParenExpr() function
324 ParenExpr struct { struct325 Lparen token.Pos // position of "("326 X Expr // parenthesized expression327 Rparen token.Pos // position of ")"491 func (x *ParenExpr) Pos() token.Pos { return x.Lparen }525 func (x *ParenExpr) End() token.Pos { return x.Rparen + 1 }556 func (*ParenExpr) exprNode() {}
185 ParenExpr struct { struct186 X Expr187 expr