Class: RLTK::CG::Interpreter

Inherits:
ExecutionEngine show all
Defined in:
lib/rltk/cg/execution_engine.rb

Overview

An execution engine that interprets the given code.

Constant Summary

Constants inherited from ExecutionEngine

ExecutionEngine::CLASS_FINALIZER

Instance Attribute Summary

Attributes inherited from ExecutionEngine

#module

Attributes included from BindingClass

#ptr

Instance Method Summary collapse

Methods inherited from ExecutionEngine

#pointer_to_global, #run_function, #run_function_as_main, #target_data

Methods included from BindingClass

#==

Constructor Details

#initialize(mod) ⇒ Interpreter

Create a new interpreter.

Parameters:

  • mod (Module)

    Module to be executed.



139
140
141
142
143
# File 'lib/rltk/cg/execution_engine.rb', line 139

def initialize(mod)
	super(mod) do |ptr, error|
		Bindings.create_interpreter_for_module(ptr, mod, error)
	end
end