rename Position get/set

This commit is contained in:
Torsten Ruger
2018-05-06 20:04:02 +03:00
parent e89c4d1ce1
commit 68fb9b1bdc
12 changed files with 41 additions and 37 deletions

View File

@ -46,7 +46,7 @@ module Risc
# labels have the same position as their next
def set_position( position , count = 0 , extra = nil)
Position.set_position(self,position , extra)
Position.set(self,position , extra)
self.next.set_position(position,count,extra) if self.next
end