2017-04-10 11:47:18 +03:00
|
|
|
module Mom
|
|
|
|
|
|
|
|
# Base class for MOM instructions
|
|
|
|
class Instruction
|
2017-09-08 13:10:22 +03:00
|
|
|
include Common::List
|
2017-09-04 21:00:08 +03:00
|
|
|
|
2017-09-06 12:11:30 +03:00
|
|
|
# implement flatten as noop to avoid condition
|
2017-09-08 13:10:22 +03:00
|
|
|
def flatten( options = {} )
|
|
|
|
return self
|
2017-09-04 21:00:08 +03:00
|
|
|
end
|
2017-04-10 11:47:18 +03:00
|
|
|
end
|
|
|
|
|
2017-09-04 21:00:08 +03:00
|
|
|
# A label with a name
|
2017-09-08 13:10:22 +03:00
|
|
|
class Label < Instruction
|
2017-08-30 17:21:13 +03:00
|
|
|
attr_reader :name
|
|
|
|
def initialize(name)
|
|
|
|
@name = name
|
|
|
|
end
|
|
|
|
end
|
2017-04-10 11:47:18 +03:00
|
|
|
end
|
2017-04-12 11:53:02 +03:00
|
|
|
|
2017-04-15 20:58:39 +03:00
|
|
|
require_relative "simple_call"
|
2017-08-30 17:21:13 +03:00
|
|
|
require_relative "truth_check"
|
|
|
|
require_relative "jump"
|
2017-04-12 11:53:02 +03:00
|
|
|
require_relative "slot_load"
|
2017-04-14 21:01:50 +03:00
|
|
|
require_relative "return_sequence"
|
2017-09-06 12:33:46 +03:00
|
|
|
require_relative "statement"
|