Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: opal/opal
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9e3f8eef20b7^
Choose a base ref
...
head repository: opal/opal
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 30cec1f68401
Choose a head ref
  • 3 commits
  • 6 files changed
  • 1 contributor

Commits on Jan 17, 2014

  1. Copy the full SHA
    9e3f8ee View commit details

Commits on Jan 18, 2014

  1. 3
    Copy the full SHA
    1cf60ac View commit details
  2. Fix path in example Gemfile

    elia committed Jan 18, 2014
    Copy the full SHA
    30cec1f View commit details
Showing with 44 additions and 10 deletions.
  1. +1 −1 examples/rack/Gemfile
  2. +5 −1 lib/opal/compiler.rb
  3. +5 −1 lib/opal/nodes/call.rb
  4. +10 −2 lib/opal/nodes/top.rb
  5. +16 −5 lib/opal/sprockets/processor.rb
  6. +7 −0 opal/corelib/runtime.js
2 changes: 1 addition & 1 deletion examples/rack/Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
source 'https://rubygems.org'

gem 'opal', :path => '../../../'
gem 'opal', :path => '../../'
6 changes: 5 additions & 1 deletion lib/opal/compiler.rb
Original file line number Diff line number Diff line change
@@ -38,9 +38,13 @@ def self.compiler_option(name, default_value, mid = nil)
# compile top level local vars with support for irb style vars
compiler_option :irb, false, :irb?

# how to handle dynamic requires (:error, :warning, :ignore)
# how to handle dynamic requires (:error, :warning, :ignore, false)
compiler_option :dynamic_require_severity, :error

# Prepare the code for future requires
compiler_option :requireable, false, :requireable?


attr_reader :result, :fragments

# Current scope
6 changes: 5 additions & 1 deletion lib/opal/nodes/call.rb
Original file line number Diff line number Diff line change
@@ -109,7 +109,7 @@ def handle_special
add_special :require do
str = DependencyResolver.new(compiler, arglist[1]).resolve
compiler.requires << str unless str.nil?
stmt? ? fragment('') : fragment('true')
stmt? ? fragment("Opal.require(#{str.inspect})") : fragment('true')
end

add_special :autoload do
@@ -181,6 +181,10 @@ def handle_part(sexp)
@compiler.error msg, @sexp.line
when :warning
@compiler.warning msg, @sexp.line
when :ignore
#noop
else
# TODO
end
end

12 changes: 10 additions & 2 deletions lib/opal/nodes/top.rb
Original file line number Diff line number Diff line change
@@ -12,7 +12,11 @@ class TopNode < ScopeNode
def compile
push version_comment

line "(function($opal) {"
if compiler.requireable?
line "Opal.modules[#{compiler.file.inspect}] = function($opal) {"
else
line "(function($opal) {"
end

in_scope do
body_code = stmt(stmts)
@@ -32,7 +36,11 @@ def compile
line body_code
end

line "})(Opal);\n"
if compiler.requireable?
line "};\n"
else
line "})(Opal);\n"
end
end

def stmts
21 changes: 16 additions & 5 deletions lib/opal/sprockets/processor.rb
Original file line number Diff line number Diff line change
@@ -78,15 +78,25 @@ def evaluate(context, locals, &block)
}

compiler = Opal::Compiler.new
result = compiler.compile data, options
file_result = compiler.compile data, options

compiler.requires.each do |r|
requires_result = compiler.requires.map do |r|
next if stubbed_file? r
path = find_opal_require context.environment, r
context.require_asset path
end

if path
context.depend_on path
compiler.compile File.read(path), options.merge(:file => r, :requireable => true)
else
context.require_asset r
''
end
end.join("\n")

result = requires_result + file_result

if self.class.source_map_enabled
# FIXME
$OPAL_SOURCE_MAPS[context.pathname] = compiler.source_map(source_file_url(context)).to_s
"#{result}\n//# sourceMappingURL=#{source_map_url(context)}\n"
else
@@ -111,11 +121,12 @@ def stubbed_file?(name)
end

def find_opal_require(environment, r)
puts environment.paths
path = environment.paths.find do |p|
File.exist?(File.join(p, "#{r}.rb"))
end

path ? File.join(path, "#{r}.rb") : r
path ? File.join(path, "#{r}.rb") : nil
end
end
end
7 changes: 7 additions & 0 deletions opal/corelib/runtime.js
Original file line number Diff line number Diff line change
@@ -884,4 +884,11 @@
bridge_class('Time', Date);

TypeError._super = Error;

Opal.modules = {};
Opal.require = function(name) {
var module;
module = Opal.modules[name] || throw Opal.LoadError.$new("cannot load such file -- "+name);
module(Opal);
}
}).call(this);