rubyx/lib/ruby
Torsten Rüger 57b0ad2c32 Fix super as statement
Super is a statement, a send really.
Not an expression (as maybe in c++)
The actual implementation will be a bit tricky, like raise, a bit of stack walking, but not impossible. Still, later
2019-08-19 18:48:13 +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 Implicit returns for class methods 2019-08-19 15:56:15 +03:00
class_statement.rb Renaming Vool exppressions rightly 2019-08-19 11:33:12 +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 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 Implicit returns for class methods 2019-08-19 15:56:15 +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 Renaming Vool exppressions rightly 2019-08-19 11:33:12 +03:00
ruby_block_statement.rb Redoing ruby block conversion 2019-08-19 14:23:55 +03:00
ruby_compiler.rb Fix super as statement 2019-08-19 18:48:13 +03:00
send_statement.rb Fix super as statement 2019-08-19 18:48:13 +03:00
statement.rb Renaming Vool exppressions rightly 2019-08-19 11:33:12 +03:00
statements.rb Renaming Vool exppressions rightly 2019-08-19 11:33:12 +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.