class Object
Public Class Methods
const_missing(const_name)
click to toggle source
# File lib/hyperstack/autoloader_starter.rb, line 7 def const_missing(const_name) # need to call original code because some things are set up there # original code may also be overloaded by reactrb, for example _autoloader_original_const_missing(const_name) rescue StandardError => e Hyperstack::Autoloader.const_missing(const_name, self) || raise(e) end
Also aliased as: _autoloader_original_const_missing