More rename cleanp

This commit is contained in:
2019-10-03 21:07:55 +03:00
parent c43436f35a
commit aa9fc8bc81
57 changed files with 130 additions and 140 deletions

View File

@ -3,7 +3,8 @@ module Risc
# CallableCompiler is used to generate risc instructions. It is an abstact base
# class shared by BlockCompiler and MethodCompiler
# - risc_instructions: The sequence of risc level instructions that mom was compiled to
# - risc_instructions: The sequence of risc level instructions that slot machine was
# compiled to
# Instructions derive from class Instruction and form a linked list
# - constants is an array of Parfait objects that need to be available
# - callable is a Method of Block

View File

@ -5,8 +5,8 @@ module Risc
class MethodCompiler < CallableCompiler
# Methods starts with a Label, both in risc and mom.
# Pass in the callable(method) and the mom label that the method starts with
# Methods starts with a Label, both in risc and slot.
# Pass in the callable(method) and the slot label that the method starts with
def initialize( method , slot_label)
super(method , slot_label)
end