Home | History | Annotate | Download | only in gc

Lines Matching refs:Left

11 		n.Left = typecheck(n.Left, Erv)
12 n.Left = defaultlit(n.Left, nil)
13 tr := n.Left.Type
25 if n.Left.Op != OXDOT {
31 // Since r->left may be mutated by typechecking, check it explicitly
33 n.Left.Left = typecheck(n.Left.Left, Erv)
34 base := n.Left.Left
36 n.Left = typecheck(n.Left, Erv)
37 if n.Left.Type == nil {
40 switch n.Left.Op {
53 for r := n.Left; r != base; r = r.Left {
59 if r.Left != base {
60 yyerror("invalid expression %v: selector implies indirection of embedded %v", n, r.Left)
67 Dump("unsafenmagic", n.Left)