removed unused NamedList

args and locals got inlined into message, forgot to delete then
ripples out due to type creation
small type class api change, more ripples, but also more consistent
This commit is contained in:
2019-09-18 22:07:05 +03:00
parent 4b8ff52aa1
commit 38491d120b
15 changed files with 49 additions and 94 deletions

View File

@ -156,7 +156,7 @@ module Parfait
attribute_name: :Word , page_size: :Integer },
Integer: {next_integer: :Integer},
List: {indexed_length: :Integer , next_list: :List} ,
Message: { next_message: :Message, receiver: :Object, frame: :NamedList ,
Message: { next_message: :Message, receiver: :Object, frame: :Object ,
return_address: :Integer, return_value: :Object,
caller: :Message , method: :TypedMethod ,
arguments_given: :Integer ,
@ -168,7 +168,6 @@ module Parfait
local9: :Object ,local10: :Object, local11: :Object , local12: :Object,
local13: :Object, local14: :Object, local15: :Object},
MetaClass: {instance_methods: :List, instance_type: :Type, clazz: :Class },
NamedList: {},
NilClass: {},
Object: {},
ReturnAddress: {next_integer: :ReturnAddress},