rubyx/lib/vool
Torsten Rüger 31ae0a9670 Add support for unless
ifs without a true branch would crash before
Somewhat more verbose but unified
2019-08-14 22:24:35 +03:00
..
assignment.rb Fix forgotten block compiler 2019-08-13 19:32:17 +03:00
basic_values.rb Some docs and to_s testing 2018-09-01 15:54:25 +03:00
block_statement.rb fix a whole bunch of vool to_mom 2019-08-07 15:09:26 +03:00
call_statement.rb Some docs and to_s testing 2018-09-01 15:54:25 +03:00
class_method_statement.rb Copy risc compiler stuff to mom 2019-08-06 18:33:27 +03:00
class_statement.rb starting on mom to risc 2019-08-08 12:19:27 +03:00
if_statement.rb Add support for unless 2019-08-14 22:24:35 +03:00
ivar_assignment.rb Some vool starting to work again 2019-08-07 12:06:06 +03:00
local_assignment.rb fix a whole bunch of vool to_mom 2019-08-07 15:09:26 +03:00
method_statement.rb starting on mom to risc 2019-08-08 12:19:27 +03:00
README.md Some docs 2019-08-06 17:42:15 +03:00
return_statement.rb fix most mom and risc apart 2019-08-10 21:30:00 +03:00
send_statement.rb Fix calling unknown methods 2019-08-14 14:59:54 +03:00
statement.rb class Methods down to vool #24 2019-02-14 19:24:12 +02:00
statements.rb fix the statement moming 2018-11-02 17:27:46 -07:00
variables.rb better tests for class sending 2019-02-23 18:17:26 +02:00
while_statement.rb fix a whole bunch of vool to_mom 2019-08-07 15:09:26 +03:00
yield_statement.rb transformed object builtins 2019-08-11 20:36:10 +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)