rubyx/lib/vool
2018-11-02 17:27:46 -07:00
..
assignment.rb first risc level block test working 2018-07-30 20:11:52 +03:00
basic_values.rb Some docs and to_s testing 2018-09-01 15:54:25 +03:00
block_statement.rb push the callable into the callable compiler 2018-07-30 10:26:11 +03:00
call_statement.rb Some docs and to_s testing 2018-09-01 15:54:25 +03:00
class_statement.rb moved all the normalize stuff over to the ruby layer 2018-07-19 14:47:29 +03:00
if_statement.rb moved all the normalize stuff over to the ruby layer 2018-07-19 14:47:29 +03:00
ivar_assignment.rb fix ruby variables 2018-07-20 14:22:26 +03:00
local_assignment.rb fx ruby send args 2018-07-20 20:06:14 +03:00
method_statement.rb push the callable into the callable compiler 2018-07-30 10:26:11 +03:00
README.md polish docs 2018-03-11 16:11:15 +05:30
return_statement.rb use the return jump to jump to the return sequence 2018-08-02 17:36:39 +03:00
send_statement.rb abstract CallStatement base class, just like in ruby 2018-07-30 14:45:37 +03:00
statement.rb remove unused code 2018-09-01 15:14:07 +03:00
statements.rb fix the statement moming 2018-11-02 17:27:46 -07:00
variables.rb Some docs and to_s testing 2018-09-01 15:54:25 +03:00
while_statement.rb moved all the normalize stuff over to the ruby layer 2018-07-19 14:47:29 +03:00
yield_statement.rb remove the code_builder 2018-08-19 13:16:07 +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 the layer of concrete syntax tree. The Parser gem is used to parse ruby. It creates an abstract syntax tree which is then transformed.

The next layer down is the Mom, Minimal object Machine, which uses an instruction tree. That is on the way down we create instructions, but stays in tree format. Only the next step down to the Risc layer moves to an instruction stream.

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.