Raku/nqp

Remove qlist opcode

coke opened this issue · 1 comments

coke commented
18:21 < [Coke]> is qlist a QAST only version of list?
18:21 < [Coke]> er, nqp::qlist
18:22 < [Coke]> m: use nqp; dd nqp::qlist(1,2,3)
18:22 < camelia> rakudo-moar fa3c0dba9: OUTPUT: «(1, 2, 3)␤»
18:22 < [Coke]> ... guess not qast only.
18:23 < [Coke]> m: use nqp; dd nqp::list(1,2,3)
18:23 < camelia> rakudo-moar fa3c0dba9: OUTPUT: «(1, 2, 3)␤»
18:23 < [Coke]> so, what's the difference?
18:47 < timotimo> [Coke]:that's from back when list and qlist were two different implementations and we needed to
                  switch things over slowly for some reason
19:08 < jnthn> [Coke]: What timo said, and qlist can surely go away; I'd forgotten it was even there
coke commented

Covered by #621