rubyx/lib/ruby
Torsten Rüger 02807cf6f9 Rename Block to RubyBlock at Ruby level
The parser presents the whole call that defines the block as a block. And so does the Ruby layer, as we don't want to do processing in ast.
Just making it clearer, also Vool:: block will have to be renamed
2019-08-19 10:31:11 +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 rename callable to CallStatement 2018-07-30 14:44:14 +03:00
basic_values.rb Fix ruby receiver to vool 2019-08-16 16:05:45 +03:00
call_statement.rb Fix all but one test 2019-08-16 21:43:54 +03:00
class_method_statement.rb class Methods down to vool #24 2019-02-14 19:24:12 +02:00
class_statement.rb still doing attr_reader, but closing #25 2019-03-07 11:00:18 +02: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 Fix if statements hoisting, now that send is working 2019-08-16 18:42:57 +03:00
logical_statement.rb remove unused code 2018-09-01 15:14:07 +03:00
method_statement.rb Adding simple implicit return 2019-08-17 23:27:55 +03:00
normalizer.rb Fix ruby normalising to_vool 2019-08-16 14:20:06 +03:00
README.md Some docs 2019-08-06 17:42:15 +03:00
return_statement.rb Adding simple implicit return 2019-08-17 23:27:55 +03:00
ruby_block_statement.rb Rename Block to RubyBlock at Ruby level 2019-08-19 10:31:11 +03:00
ruby_compiler.rb Rename Block to RubyBlock at Ruby level 2019-08-19 10:31:11 +03:00
send_statement.rb Fix ruby normalising to_vool 2019-08-16 14:20:06 +03:00
statement.rb Some docs and to_s testing 2018-09-01 15:54:25 +03:00
statements.rb Adding simple implicit return 2019-08-17 23:27:55 +03:00
variables.rb Fix ruby normalising to_vool 2019-08-16 14:20:06 +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 ont 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).

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.