rubyx/lib/vool
Torsten Rüger 4bf23defc8 fix many tests with preloading
preloading, something akin to builtin, loads some very small predefined (macro) methods for the tests to work (ie call)
2019-09-12 22:27:26 +03:00
..
builtin using new macro approach for builtin, testing first 2019-08-26 09:24:06 +03:00
assignment.rb Renaming Vool exppressions rightly 2019-08-19 11:33:12 +03:00
basic_values.rb Fix super as statement 2019-08-19 18:48:13 +03:00
builtin.rb renaming mom builtin to macro 2019-09-11 20:33:49 +03:00
call_statement.rb Renaming Vool exppressions rightly 2019-08-19 11:33:12 +03:00
class_expression.rb fix many tests with preloading 2019-09-12 22:27:26 +03:00
class_method_expression.rb Move vool block compilation into constant generation 2019-08-19 14:33:02 +03:00
if_statement.rb A good start on the macro idea 2019-08-25 14:40:59 +03:00
ivar_assignment.rb Fix vool assignments after call rework 2019-08-16 20:39:08 +03:00
lambda_expression.rb Move vool block compilation into constant generation 2019-08-19 14:33:02 +03:00
local_assignment.rb vool working after message change 2019-08-22 21:24:02 +03:00
macro_expression.rb A good start on the macro idea 2019-08-25 14:40:59 +03:00
method_expression.rb Move vool block compilation into constant generation 2019-08-19 14:33:02 +03:00
README.md Some docs 2019-08-06 17:42:15 +03:00
return_statement.rb A good start on the macro idea 2019-08-25 14:40:59 +03:00
send_statement.rb vool working after message change 2019-08-22 21:24:02 +03:00
statement.rb A good start on the macro idea 2019-08-25 14:40:59 +03:00
statements.rb Renaming Vool exppressions rightly 2019-08-19 11:33:12 +03:00
super_statement.rb Fix super as statement 2019-08-19 18:48:13 +03:00
variables.rb Renaming Vool exppressions rightly 2019-08-19 11:33:12 +03:00
while_statement.rb Renaming Vool exppressions rightly 2019-08-19 11:33:12 +03:00
yield_statement.rb renaming mom builtin to macro 2019-09-11 20:33:49 +03:00

VOOL

Virtual Object Oriented Language

in other words, ruby without the fluff.

Possibly later other languages can compile to this level and use rx-file as code definition.

Syntax tree

Vool is a layer with concrete syntax tree, just like the ruby layer above. Vool is just simplified, without fluff, see below.

The next layer down is the Mom, Minimal object Machine, which uses an instruction list.

The nodes of the syntax tree are all the things one would expect from a language, if statements and the like. There is no context yet, and actual objects, representing classes and methods, will be created on the way down.

Fluff

Ruby has lots of duplication to help programmers to write less. An obvious example is the existence of until, which really means if not. Other examples, some more impactful are:

  • No implicit blocks, those get passed as normal arguments (the last)
  • No splats
  • no case
  • no elseif (no unless, no ternary operator)
  • no global variables.

Parfait objects

The compilation process ends up creating (parfait) objects to represent things like classes, types and constants. This is done in this layer, on the way down to MOM (ie not during init)