const go/token.GEQ

9 uses

	go/token (current package)
		token.go#L78: 	GEQ      // >=
		token.go#L187: 	GEQ:      ">=",
		token.go#L272: 	case EQL, NEQ, LSS, LEQ, GTR, GEQ:

	go/constant
		value.go#L1330: 	case token.GEQ:
		value.go#L1369: 		case token.GEQ:
		value.go#L1407: 		case token.GEQ:

	go/scanner
		scanner.go#L950: 			tok = s.switch4(token.GTR, token.GEQ, '>', token.SHR, token.SHR_ASSIGN)

	go/types
		expr.go#L245: 	case token.EQL, token.NEQ, token.LSS, token.LEQ, token.GTR, token.GEQ:
		expr.go#L544: 	case token.LSS, token.LEQ, token.GTR, token.GEQ: