module Anyolite::Preloader::AtCompiletime

Defined in:

Preloader.cr

Macro Summary

Macro Detail

macro load_bytecode_array_from_file(filename) #

Caches the Ruby script in filename directly as bytecode.


[View source]
macro load_bytecode_file(filename) #

Caches the bytecode from filename, so it is automatically included into the final application.


[View source]
macro transform_script_to_bytecode(filename, target_filename) #

Converts the Ruby script in filename to bytecode, which is then stored in target_filename.


[View source]
macro transform_script_to_bytecode_string(filename) #

Converts the Ruby script in filename to bytecode.


[View source]