Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for OpPos (0.1 sec)

  1. src/go/types/expr.go

    			}
    			// x is a constant so xval != nil and it must be of Int kind.
    			x.val = constant.Shift(xval, op, uint(s))
    			x.expr = e
    			opPos := x.Pos()
    			if b, _ := e.(*ast.BinaryExpr); b != nil {
    				opPos = b.OpPos
    			}
    			check.overflow(x, opPos)
    			return
    		}
    
    		// non-constant shift with constant lhs
    		if isUntyped(x.typ) {
    			// spec: "If the left operand of a non-constant shift
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/expr.go

    			return false
    		}
    	} else {
    		check.errorf(x, InvalidSyntaxTree, "unknown operator %s", op)
    		return false
    	}
    	return true
    }
    
    // opPos returns the position of the operator if x is an operation;
    // otherwise it returns the start position of x.
    func opPos(x syntax.Expr) syntax.Pos {
    	switch op := x.(type) {
    	case nil:
    		return nopos // don't crash
    	case *syntax.Operation:
    		return op.Pos()
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
Back to top