fix builtin methods according to last commit

This commit is contained in:
Torsten Ruger
2018-04-08 18:52:17 +03:00
parent 9867234c38
commit 8c322329fb
6 changed files with 107 additions and 138 deletions

View File

@ -21,6 +21,7 @@ module Util
# ie insert into the linked list that the instructions form
# but allowing the instruction to be a list too (ie more than one)
def insert( instruction )
raise "circular insert #{instruction}" if instruction == self
instruction.last.set_next @next
@next = instruction
end