rubyx/lib/ruby
Torsten Rüger 1a096110a8 basic require_relative (hack)
opted to hack require to be getting on
need require for the test helper
and the files in lib/parfait

General require mechanism would still be ok, but require_ralative means implementing file source, which needs to be dragged around. I'll make an issue
2019-09-07 22:13:53 +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 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 fix module handling at ruby level 2019-09-06 21:00:37 +03:00
send_statement.rb basic require_relative (hack) 2019-09-07 22:13:53 +03:00
statement.rb Renaming Vool exppressions rightly 2019-08-19 11:33:12 +03:00
statements.rb fix module handling at ruby level 2019-09-06 21:00:37 +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.