fix more of the changed names

add a few self.
This commit is contained in:
Torsten Ruger
2018-08-12 13:10:44 +03:00
parent 66e0d4ae26
commit 3d113b4d83
7 changed files with 20 additions and 20 deletions

View File

@ -135,12 +135,12 @@ module Parfait
{BinaryCode: {next_code: :BinaryCode} ,
Block: {binary: :BinaryCode, next_callable: :Block,
arguments_type: :Type , self_type: :Type, frame_type: :Type,
name: :Word } ,
name: :Word , blocks: :Block } ,
CacheEntry: {cached_type: :Type , cached_method: :CallableMethod } ,
Callable: {binary: :BinaryCode,next_callable: :Callable ,
arguments_type: :Type , self_type: :Type, frame_type: :Type,
name: :Word } ,
name: :Word , blocks: :Block } ,
CallableMethod: {binary: :BinaryCode, next_callable: :CallableMethod ,
arguments_type: :Type , self_type: :Type, frame_type: :Type ,
name: :Word , blocks: :Block} ,