Class: Opal::BuilderProcessors::ERBProcessor

Inherits:
Processor
  • Object
show all
Defined in:
opal/lib/opal/builder_processors.rb

Instance Attribute Summary

Attributes inherited from Processor

#filename, #options, #required_trees, #requires

Instance Method Summary collapse

Methods inherited from Processor

handles, #initialize, #mark_as_required, match?, match_regexp, #to_s

Constructor Details

This class inherits a constructor from Opal::BuilderProcessors::Processor

Instance Method Details

#sourceObject



129
130
131
132
133
# File 'opal/lib/opal/builder_processors.rb', line 129

def source
  result = ::ERB.new(@source.to_s).result
  module_name = ::Opal::Compiler.module_name(@filename)
  "Opal.modules[#{module_name.inspect}] = function() {#{result}};"
end