mirror of
https://github.com/nim-lang/Nim.git
synced 2026-06-10 05:38:10 +00:00
fixes regressions
This commit is contained in:
@@ -186,6 +186,8 @@ proc newSymG*(kind: TSymKind, n: PNode, c: PContext): PSym =
|
||||
result.owner = getCurrOwner()
|
||||
else:
|
||||
result = newSym(kind, considerQuotedIdent(n), getCurrOwner(), n.info)
|
||||
#if kind in {skForVar} and result.owner.kind == skModule:
|
||||
# incl(result.flags, sfGlobal)
|
||||
|
||||
proc semIdentVis(c: PContext, kind: TSymKind, n: PNode,
|
||||
allowed: TSymFlags): PSym
|
||||
|
||||
@@ -326,6 +326,8 @@ proc semIdentDef(c: PContext, n: PNode, kind: TSymKind): PSym =
|
||||
incl(result.flags, sfGlobal)
|
||||
else:
|
||||
result = semIdentWithPragma(c, kind, n, {})
|
||||
if result.owner.kind == skModule:
|
||||
incl(result.flags, sfGlobal)
|
||||
suggestSym(n.info, result)
|
||||
styleCheckDef(result)
|
||||
|
||||
|
||||
51
tests/iter/titer10.nim
Normal file
51
tests/iter/titer10.nim
Normal file
@@ -0,0 +1,51 @@
|
||||
discard """
|
||||
output: '''3
|
||||
2
|
||||
5
|
||||
1
|
||||
@[@[0, 0], @[0, 1]]
|
||||
@[@[0, 0], @[0, 1]]
|
||||
@[@[2, 2], @[2, 3]]
|
||||
@[@[2, 2], @[2, 3]]'''
|
||||
"""
|
||||
|
||||
when true:
|
||||
# bug #2604
|
||||
|
||||
import algorithm
|
||||
|
||||
iterator byDistance*[int]( ints: openArray[int], base: int ): int =
|
||||
var sortable = @ints
|
||||
|
||||
sortable.sort do (a, b: int) -> int:
|
||||
result = cmp( abs(base - a), abs(base - b) )
|
||||
|
||||
for val in sortable:
|
||||
yield val
|
||||
|
||||
when isMainModule:
|
||||
proc main =
|
||||
for val in byDistance([2, 3, 5, 1], 3):
|
||||
echo val
|
||||
main()
|
||||
|
||||
when true:
|
||||
# bug #1527
|
||||
|
||||
import sequtils
|
||||
|
||||
let thread = @[@[0, 0],
|
||||
@[0, 1],
|
||||
@[2, 2],
|
||||
@[2, 3]]
|
||||
|
||||
iterator threadUniqs(seq1: seq[seq[int]]): seq[seq[int]] =
|
||||
for i in 0 .. <seq1.len:
|
||||
block:
|
||||
let i = i
|
||||
yield seq1.filter do (x: seq[int]) -> bool: x[0] == seq1[i][0]
|
||||
proc main2 =
|
||||
for uniqs in thread.threadUniqs:
|
||||
echo uniqs
|
||||
|
||||
main2()
|
||||
Reference in New Issue
Block a user