Rename Vool to Sol

Simple is really the descriptive name for the layer
Sure, it is "virtual" but that is not as important as the fact that it is simple (or simplified)
Also objct (based really) is better, since orientated implies it is a little like that, but only orientated, not really it. Sol only has objects, nothing else
Just cause i was renaming anyway
This commit is contained in:
2019-10-04 00:36:49 +03:00
parent aa9fc8bc81
commit d1f8733623
135 changed files with 636 additions and 636 deletions

View File

@ -4,7 +4,7 @@ module ScopeHelper
def compiler_with_main(options = {})
compiler = RubyX::RubyXCompiler.new(RubyX.default_test_options.merge(options))
compiler.ruby_to_vool( "class Space;def main(arg);return;end;end" )
compiler.ruby_to_sol( "class Space;def main(arg);return;end;end" )
compiler
end
def in_Test(statements)
@ -28,7 +28,7 @@ module ScopeHelper
end
end
module VoolCompile
module SolCompile
include ScopeHelper
include SlotMachine
include Preloader

View File

@ -2,11 +2,11 @@ module Preloader
def get_preload(preload)
return "" unless preload
if( preload == "all" )
loading = Vool::Builtin.builtin.keys
loading = Sol::Builtin.builtin.keys
else
loading = preload.split(";")
end
loading.collect { |loads| Vool::Builtin.load_builtin(loads)}.join(";") + ";"
loading.collect { |loads| Sol::Builtin.load_builtin(loads)}.join(";") + ";"
end
def preload
get_preload(@preload)