Skip to content

Commit 5c1be08

Browse files
authored
Merge pull request #376 from Quasilyte/quasilyte/assignOp
simplify assignments with <op>= syntax
2 parents 0403491 + 88db909 commit 5c1be08

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

benchutil/wide_schema.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ func generateFieldNameFromX(x int) string {
8181
for {
8282
r := v % 10
8383
out = alphabet[r] + out
84-
v = v / 10
84+
v /= 10
8585
if v == 0 {
8686
break
8787
}

language/visitor/visitor.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ func Visit(root ast.Node, visitorOpts *VisitorOptions, keyMap KeyMap) interface{
203203
// abstract algorithm
204204
Loop:
205205
for {
206-
index = index + 1
206+
index++
207207

208208
isLeaving := (len(keys) == index)
209209
var (

rules.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ func getSuggestedTypeNames(schema *Schema, ttype Output, fieldName string) []str
297297
if index < len(suggestedInterfaces) {
298298
s := suggestedInterfaces[index]
299299
if s.name == possibleInterface.Name() {
300-
s.count = s.count + 1
300+
s.count++
301301
}
302302
}
303303
}
@@ -782,7 +782,7 @@ func LoneAnonymousOperationRule(context *ValidationContext) *ValidationRuleInsta
782782
operationCount = 0
783783
for _, definition := range node.Definitions {
784784
if definition.GetKind() == kinds.OperationDefinition {
785-
operationCount = operationCount + 1
785+
operationCount++
786786
}
787787
}
788788
}

testutil/rules_test_harness.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ func ExpectPassesRuleWithSchema(t *testing.T, schema *graphql.Schema, rule graph
604604
}
605605
func RuleError(message string, locs ...int) gqlerrors.FormattedError {
606606
locations := []location.SourceLocation{}
607-
for i := 0; i < len(locs); i = i + 2 {
607+
for i := 0; i < len(locs); i += 2 {
608608
line := locs[i]
609609
col := 0
610610
if i+1 < len(locs) {

0 commit comments

Comments
 (0)