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: ae96b999a89f
Choose a base ref
...
head repository: opal/opal
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5347f26a002d
Choose a head ref
  • 6 commits
  • 2 files changed
  • 2 contributors

Commits on May 22, 2015

  1. Add test for this change

    wied03 committed May 22, 2015
    Copy the full SHA
    f42bd40 View commit details
  2. Forgot do

    wied03 committed May 22, 2015
    Copy the full SHA
    e64bcef View commit details
  3. Implement change

    wied03 committed May 22, 2015
    Copy the full SHA
    bf50ea8 View commit details
  4. Correct indentation

    wied03 committed May 22, 2015
    Copy the full SHA
    635f6bc View commit details
  5. 1
    Copy the full SHA
    719a145 View commit details

Commits on May 23, 2015

  1. Merge pull request #884 from wied03/feature/bridge_class_tweak

    Support Non Top Level Scope for Bridged Classes Built From Functions
    elia committed May 23, 2015

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    5347f26 View commit details
Showing with 59 additions and 4 deletions.
  1. +11 −3 opal/corelib/runtime.js
  2. +48 −1 spec/opal/core/runtime/bridged_classes_spec.rb
14 changes: 11 additions & 3 deletions opal/corelib/runtime.js
Original file line number Diff line number Diff line change
@@ -155,7 +155,7 @@
}
else if (typeof(superklass) === 'function') {
// passed native constructor as superklass, so bridge it as ruby class
return bridge_class(id, superklass);
return bridge_class(id, superklass, base);
}
else {
// if class doesnt exist, create a new one with given superclass
@@ -560,14 +560,22 @@
*
* @param [String] name the name of the ruby class to create
* @param [Function] constructor native javascript constructor to use
* @param [Object] base where the bridge class is being created. If none is supplied, the top level scope (Opal) will be used
* @return [Class] returns new ruby class
*/
function bridge_class(name, constructor) {
function bridge_class(name, constructor, base) {
var klass = boot_class_object(ObjectClass, constructor);

klass.$$name = name;

create_scope(Opal, klass, name);
if (base === undefined) {
base = Opal;
}
else {
base = base.$$scope;
}

create_scope(base, klass, name);
bridged_classes.push(klass);

var object_methods = BasicObjectClass.$$methods.concat(ObjectClass.$$methods);
49 changes: 48 additions & 1 deletion spec/opal/core/runtime/bridged_classes_spec.rb
Original file line number Diff line number Diff line change
@@ -4,7 +4,6 @@
var bridge_class_demo = function(){};
bridge_class_demo.prototype.$foo = function() { return "bar" };
}

class TopBridgedClassDemo < `bridge_class_demo`
def some_bridged_method
[1, 2, 3]
@@ -62,3 +61,51 @@ def some_bridged_method
end
end
end

class ModularizedBridgeClass
def something
'different module'
end
end

%x{
var bridge_class_demo_module = function(){};
bridge_class_demo_module.prototype.$foo = function() { return "foobar" };
}

module BridgeModule
class ModularizedBridgeClass < `bridge_class_demo_module`
def some_bridged_method
[4, 5, 6]
end
end
end

describe 'Bridged classes in different modules' do
before do
@bridged = BridgeModule::ModularizedBridgeClass
@instance = `new bridge_class_demo_module`
end

it "should expose the given class not at the top level scope" do
@bridged.should be_kind_of(Class)
end

it 'should not disturb an existing class at the top level scope' do
ModularizedBridgeClass.new.something.should == 'different module'
end

it "gives the class the correct name" do
@bridged.name.should == "BridgeModule::ModularizedBridgeClass"
end

it "instances of class should be able to call native ruby methods" do
@instance.foo.should == "foobar"
@bridged.new.foo.should == "foobar"
end

it "allows new methods to be defined on the bridged prototype" do
@instance.some_bridged_method.should == [4, 5, 6]
@bridged.new.some_bridged_method.should == [4, 5, 6]
end
end