diff options
author | Clyybber <darkmine956@gmail.com> | 2019-05-07 12:04:00 +0200 |
---|---|---|
committer | Clyybber <darkmine956@gmail.com> | 2019-05-07 12:32:05 +0200 |
commit | f18b3af9d4a6393ba988cdb17d8f0861b1c75c7d (patch) | |
tree | 8d4fe109101792fb0f7bdfb33c0a0071d34e6f71 /compiler/cgmeth.nim | |
parent | 9ffab44c35cb31c1811800e130e4dc1bd59503f9 (diff) | |
download | Nim-f18b3af9d4a6393ba988cdb17d8f0861b1c75c7d.tar.gz |
Replace countup(x, y-1) with x ..< y
Diffstat (limited to 'compiler/cgmeth.nim')
-rw-r--r-- | compiler/cgmeth.nim | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/compiler/cgmeth.nim b/compiler/cgmeth.nim index c97b1b1aa..c1e2ed74c 100644 --- a/compiler/cgmeth.nim +++ b/compiler/cgmeth.nim @@ -48,7 +48,7 @@ proc methodCall*(n: PNode; conf: ConfigRef): PNode = if disp != nil: result.sons[0].sym = disp # change the arguments to up/downcasts to fit the dispatcher's parameters: - for i in countup(1, sonsLen(result)-1): + for i in 1 ..< sonsLen(result): result.sons[i] = genConv(result.sons[i], disp.typ.sons[i], true, conf) else: localError(conf, n.info, "'" & $result.sons[0] & "' lacks a dispatcher") @@ -61,7 +61,7 @@ proc sameMethodBucket(a, b: PSym): MethodResult = if sonsLen(a.typ) != sonsLen(b.typ): return - for i in countup(1, sonsLen(a.typ) - 1): + for i in 1 ..< sonsLen(a.typ): var aa = a.typ.sons[i] var bb = b.typ.sons[i] while true: @@ -160,7 +160,7 @@ proc fixupDispatcher(meth, disp: PSym; conf: ConfigRef) = proc methodDef*(g: ModuleGraph; s: PSym, fromCache: bool) = let L = len(g.methods) var witness: PSym - for i in countup(0, L - 1): + for i in 0 ..< L: let disp = g.methods[i].dispatcher case sameMethodBucket(disp, s) of Yes: @@ -198,7 +198,7 @@ proc relevantCol(methods: seq[PSym], col: int): bool = return true proc cmpSignatures(a, b: PSym, relevantCols: IntSet): int = - for col in countup(1, sonsLen(a.typ) - 1): + for col in 1 ..< sonsLen(a.typ): if contains(relevantCols, col): var aa = skipTypes(a.typ.sons[col], skipPtrs) var bb = skipTypes(b.typ.sons[col], skipPtrs) @@ -215,7 +215,7 @@ proc sortBucket(a: var seq[PSym], relevantCols: IntSet) = if h > n: break while true: h = h div 3 - for i in countup(h, n - 1): + for i in h ..< n: var v = a[i] var j = i while cmpSignatures(a[j - h], v, relevantCols) >= 0: @@ -234,7 +234,7 @@ proc genDispatcher(g: ModuleGraph; methods: seq[PSym], relevantCols: IntSet): PS var ands = getSysMagic(g, unknownLineInfo(), "and", mAnd) var iss = getSysMagic(g, unknownLineInfo(), "of", mOf) let boolType = getSysType(g, unknownLineInfo(), tyBool) - for col in countup(1, paramLen - 1): + for col in 1 ..< paramLen: if contains(relevantCols, col): let param = base.typ.n.sons[col].sym if param.typ.skipTypes(abstractInst).kind in {tyRef, tyPtr}: @@ -243,7 +243,7 @@ proc genDispatcher(g: ModuleGraph; methods: seq[PSym], relevantCols: IntSet): PS for meth in countup(0, high(methods)): var curr = methods[meth] # generate condition: var cond: PNode = nil - for col in countup(1, paramLen - 1): + for col in 1 ..< paramLen: if contains(relevantCols, col): var isn = newNodeIT(nkCall, base.info, boolType) addSon(isn, newSymNode(iss)) @@ -261,7 +261,7 @@ proc genDispatcher(g: ModuleGraph; methods: seq[PSym], relevantCols: IntSet): PS let retTyp = base.typ.sons[0] let call = newNodeIT(nkCall, base.info, retTyp) addSon(call, newSymNode(curr)) - for col in countup(1, paramLen - 1): + for col in 1 ..< paramLen: addSon(call, genConv(newSymNode(base.typ.n.sons[col].sym), curr.typ.sons[col], false, g.config)) var ret: PNode @@ -286,9 +286,9 @@ proc genDispatcher(g: ModuleGraph; methods: seq[PSym], relevantCols: IntSet): PS proc generateMethodDispatchers*(g: ModuleGraph): PNode = result = newNode(nkStmtList) - for bucket in countup(0, len(g.methods) - 1): + for bucket in 0 ..< len(g.methods): var relevantCols = initIntSet() - for col in countup(1, sonsLen(g.methods[bucket].methods[0].typ) - 1): + for col in 1 ..< sonsLen(g.methods[bucket].methods[0].typ): if relevantCol(g.methods[bucket].methods, col): incl(relevantCols, col) if optMultiMethods notin g.config.globalOptions: # if multi-methods are not enabled, we are interested only in the first field |