Category talk:Wren-seq: Difference between revisions

Content added Content deleted
(→‎Source code: Added Lst.expand method.)
(→‎Source code: Fixed a potential bug in Stack.pop() method.)
Line 864: Line 864:
pop() {
pop() {
var item = peek()
var item = peek()
if (item != null) {
if (!(item is Null)) {
_stack.removeAt(-1)
_stack.removeAt(-1)
}
}