mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
@@ -181,9 +181,16 @@ proc isPartOf*(a, b: PNode): TAnalysisResult =
|
||||
else: discard
|
||||
of nkObjConstr:
|
||||
result = arNo
|
||||
for i in 1..<b.len:
|
||||
for i in 1 ..< b.len:
|
||||
let res = isPartOf(a, b[i][1])
|
||||
if res != arNo:
|
||||
result = res
|
||||
if res == arYes: break
|
||||
of nkCall:
|
||||
result = arNo
|
||||
for i in 1 ..< b.len:
|
||||
let res = isPartOf(a, b[i])
|
||||
if res != arNo:
|
||||
result = res
|
||||
if res == arYes: break
|
||||
else: discard
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
discard """
|
||||
output: '''(10, (20, ))'''
|
||||
output: '''(10, (20, ))
|
||||
42'''
|
||||
"""
|
||||
|
||||
import strutils, sequtils
|
||||
@@ -22,5 +23,17 @@ proc dosomething(): seq[TThing] =
|
||||
|
||||
result = @[TThing(data: 10, children: result)]
|
||||
|
||||
when isMainModule:
|
||||
echo($dosomething()[0])
|
||||
echo($dosomething()[0])
|
||||
|
||||
|
||||
# bug #9844
|
||||
|
||||
proc f(v: int): int = v
|
||||
|
||||
type X = object
|
||||
v: int
|
||||
|
||||
var x = X(v: 42)
|
||||
|
||||
x = X(v: f(x.v))
|
||||
echo x.v
|
||||
|
||||
Reference in New Issue
Block a user