mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-19 22:10:33 +00:00
committed by
Andreas Rumpf
parent
ecf1802568
commit
e8a00b805f
@@ -821,7 +821,7 @@ proc rawExecute(c: PCtx, start: int, tos: PStackFrame): TFullReg =
|
||||
of opcAddSeqElem:
|
||||
decodeB(rkNode)
|
||||
if regs[ra].node.kind == nkBracket:
|
||||
regs[ra].node.add(copyTree(regs[rb].regToNode))
|
||||
regs[ra].node.add(copyValue(regs[rb].regToNode))
|
||||
else:
|
||||
stackTrace(c, tos, pc, errNilAccess)
|
||||
of opcGetImpl:
|
||||
|
||||
@@ -10,7 +10,7 @@ static:
|
||||
# an assignment of stmtList into an array
|
||||
var nodeArray: array[1, NimNode]
|
||||
# an assignment of stmtList into a seq
|
||||
var nodeSeq = newSeq[NimNode](1)
|
||||
var nodeSeq = newSeq[NimNode](2)
|
||||
|
||||
|
||||
proc checkNode(arg: NimNode; name: string): void {. compileTime .} =
|
||||
@@ -21,12 +21,17 @@ proc checkNode(arg: NimNode; name: string): void {. compileTime .} =
|
||||
node = arg
|
||||
nodeArray = [arg]
|
||||
nodeSeq[0] = arg
|
||||
var seqAppend = newSeq[NimNode](0)
|
||||
seqAppend.add([arg]) # at the time of this writing this works
|
||||
seqAppend.add(arg) # bit this creates a copy
|
||||
arg.add newCall(ident"echo", newLit("Hello World"))
|
||||
|
||||
assertEq arg.lispRepr , """StmtList(DiscardStmt(Empty()), Call(Ident(!"echo"), StrLit(Hello World)))"""
|
||||
assertEq arg.lispRepr , """StmtList(DiscardStmt(Empty()), Call(Ident(!"echo"), StrLit(Hello World)))"""
|
||||
assertEq node.lispRepr , """StmtList(DiscardStmt(Empty()), Call(Ident(!"echo"), StrLit(Hello World)))"""
|
||||
assertEq nodeArray[0].lispRepr , """StmtList(DiscardStmt(Empty()), Call(Ident(!"echo"), StrLit(Hello World)))"""
|
||||
assertEq nodeSeq[0].lispRepr , """StmtList(DiscardStmt(Empty()), Call(Ident(!"echo"), StrLit(Hello World)))"""
|
||||
assertEq seqAppend[0].lispRepr , """StmtList(DiscardStmt(Empty()), Call(Ident(!"echo"), StrLit(Hello World)))"""
|
||||
assertEq seqAppend[1].lispRepr , """StmtList(DiscardStmt(Empty()), Call(Ident(!"echo"), StrLit(Hello World)))"""
|
||||
|
||||
echo "OK"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user