rubyx/lib/parfait
Torsten Ruger d24b6ee153 start writing parfait witout the module
Parfait classes must be unscoped. Now we start parsing Parfait, it must be without the module.
Luckily module_eval makes this a breeze.
Also remove string interpolation that is not yet processed
2019-02-10 21:00:25 +02:00
..
behaviour.rb make all instances attr read writers 2018-08-11 19:15:34 +03:00
binary_code.rb make all instances attr read writers 2018-08-11 19:15:34 +03:00
block.rb make all instances attr read writers 2018-08-11 19:15:34 +03:00
cache_entry.rb make all instances attr read writers 2018-08-11 19:15:34 +03:00
callable_method.rb make all instances attr read writers 2018-08-11 19:15:34 +03:00
callable.rb still some names that needed changing 2018-08-12 14:48:20 +03:00
class.rb make all instances attr read writers 2018-08-11 19:15:34 +03:00
data_object.rb replace add_new_int in most builtins 2018-11-21 20:29:22 +02:00
dictionary.rb make all instances attr read writers 2018-08-11 19:15:34 +03:00
factory.rb start writing parfait witout the module 2019-02-10 21:00:25 +02:00
integer.rb replace add_new_int in most builtins 2018-11-21 20:29:22 +02:00
list.rb make all instances attr read writers 2018-08-11 19:15:34 +03:00
message.rb let spce keep the messages in a factory #14 2018-09-01 11:24:16 +03:00
named_list.rb chaning calling convention not to add frame/arg types 2018-08-12 14:47:05 +03:00
object.rb start writing parfait witout the module 2019-02-10 21:00:25 +02:00
README.md litte bit of docs 2018-08-24 18:49:44 +03:00
space.rb close #21 2019-02-07 18:24:35 +02:00
type.rb fix more of the changed names 2018-08-12 13:10:44 +03:00
vool_method.rb still some names that needed changing 2018-08-12 14:48:20 +03:00
word.rb close #21 2019-02-07 18:24:35 +02:00

Parfait: a thin layer

Parfait is the run-time of the object system. To be more precise, it is that part of the run-time needed to boot.

The run-time needs to contain quite a lot of functionality for a dynamic system. And a large part of that functionality must actually be used at compile time too.

We reuse the Parfait code at compile-time, to create the data for the compiled code. To do this the compiler (re) defines the object memory (in parfait_adapter).

A work in progress that started from here : http://ruby-x.org/blog/more-clarity went on here http://ruby-x.org/blog/layers-vs-passes.html and is now documented here http://ruby-x.org/rubyx/parfait.html

A step back: the code (program) we compile runs at run - time. And so does parfait. So all we have to do is compile it with the program.

And thus parfait can be used at run-time.

It's too simple: just slips off the mind like a fish into water.

Parfait has a brother, the Builtin module. Builtin contains everything that can not be coded in ruby, but we still need (things like List access).

Vm vs language- core

Parfait is not the language core library. Core library functionality differs between languages and so the language core lib must be on top of parfait.

To make this point clear, i have started using different names for the core classes. Hopefully more sensible ones, ie List instead of Array, Dictionary instead of Hash.

Also Parfait is meant to be as thin as humanly possibly, so extra (nice to have) functionality will be in future modules.