rename internal get/set functions

mainly because the salaam parser chokes on internal…
This commit is contained in:
Torsten Ruger
2015-11-07 17:40:59 +02:00
parent 8aabff6b37
commit 37928b8591
11 changed files with 39 additions and 39 deletions

View File

@ -74,11 +74,11 @@ module Parfait
end
# 1 -based index
def internal_object_get(index)
def get_internal(index)
@memory[index]
end
# 1 -based index
def internal_object_set(index , value)
def set_internal(index , value)
raise "failed init for #{self.class}" unless @memory
@memory[index] = value
value