rubyx/lib/ruby
Torsten Rüger c43436f35a Change Mom to SlotMachine
rather large commit, but essentially a simple rename
Rationale in docs and blogs
2019-10-03 20:55:41 +03:00
..
array_statement.rb start a new ruby layer to do the to_vool conversion 2018-07-19 14:46:51 +03:00
assignment.rb Redoing ruby block conversion 2019-08-19 14:23:55 +03:00
basic_values.rb Fix super as statement 2019-08-19 18:48:13 +03:00
call_statement.rb Redoing ruby block conversion 2019-08-19 14:23:55 +03:00
class_method_statement.rb fix to_s (mostly) 2019-09-19 20:48:21 +03:00
class_statement.rb rename singleton_class to single_class and misc 2019-09-24 17:25:19 +03:00
hash_statement.rb start a new ruby layer to do the to_vool conversion 2018-07-19 14:46:51 +03:00
if_statement.rb some cc driven cleanup 2019-10-02 17:54:42 +03:00
logical_statement.rb remove unused code 2018-09-01 15:14:07 +03:00
method_statement.rb rename singleton_class to single_class and misc 2019-09-24 17:25:19 +03:00
normalizer.rb Fix ruby normalising to_vool 2019-08-16 14:20:06 +03:00
README.md Add mom boot options 2019-09-07 16:43:47 +03:00
return_statement.rb Renaming Vool exppressions rightly 2019-08-19 11:33:12 +03:00
ruby_block_statement.rb fix module handling at ruby level 2019-09-06 21:00:37 +03:00
ruby_compiler.rb Change Mom to SlotMachine 2019-10-03 20:55:41 +03:00
send_statement.rb basic require_relative (hack) 2019-09-07 22:13:53 +03:00
statement.rb fix to_s (mostly) 2019-09-19 20:48:21 +03:00
statements.rb fix to_s (mostly) 2019-09-19 20:48:21 +03:00
variables.rb fix module handling at ruby level 2019-09-06 21:00:37 +03:00
while_statement.rb Fix ruby normalising to_vool 2019-08-16 14:20:06 +03:00
yield_statement.rb Some docs and to_s testing 2018-09-01 15:54:25 +03:00

Ruby

A representation of the ruby code.

Concrete Syntax tree

Ruby is parsed by the parser gem (big thanks to whitequark). Own attempts at this task have failed utterly, because ruby is a huge language (and not well defined at that)

Alas, the parser gem creates an abstract syntax tree, meaning one class is used to represent all node types.

Imho object oriented languages have a class system to do just that, ie represent what we may loosely call type here, ie the kind of statement.

The ruby layer is really all about defining classes for every kind of statement, thus "typing" the syntax tree, and making it concrete.

to Vool

In our nice layers, we are on the way down to Vool, a simplified version of oo.

It has proven handy to have this layer, so the code for transforming each object is in the class representing that object. (As one does in oo, again imho).

compile_time_expansions

We do some expansions at compile time that are in fact methods calls in real ruby.

First among those will be require (+ require_relative) , but attribute readers will surely follow.

Parfait objects

The compilation process ends up creating (parfait) objects to represent things like classes, types and constants. This is not done here yet, but in the vool layer.