fixes regressions

This commit is contained in:
Andreas Rumpf
2016-01-05 15:39:49 +01:00
parent bb8b1c3b57
commit 4d10937a30
3 changed files with 55 additions and 0 deletions

View File

@@ -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

View File

@@ -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
View 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()