rename locals from type to role in message

This commit is contained in:
Torsten Ruger
2016-12-21 19:01:42 +02:00
parent 0e99ff33ae
commit ed12108425
8 changed files with 9 additions and 9 deletions

View File

@ -9,7 +9,7 @@
module Parfait
class Message < Object
attributes [:next_message , :receiver , :named_list , :return_address ]
attributes [:next_message , :receiver , :locals , :return_address ]
attributes [:return_value, :caller , :name ]
include Indexed
@ -17,7 +17,7 @@ module Parfait
def initialize next_m
self.next_message = next_m
self.named_list = NamedList.new()
self.locals = NamedList.new()
self.caller = nil
super()
end