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: e76b71677fd3
Choose a base ref
...
head repository: opal/opal
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 48e34515fa9d
Choose a head ref
  • 3 commits
  • 2 files changed
  • 1 contributor

Commits on Feb 2, 2014

  1. Fix Opal.respond_to? helper

    meh committed Feb 2, 2014
    Copy the full SHA
    bdaca2f View commit details
  2. Add Opal.inspect helper

    meh committed Feb 2, 2014
    Copy the full SHA
    6dbba1f View commit details
  3. Use Opal.inspect in Array#join

    meh committed Feb 2, 2014

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    48e3451 View commit details
Showing with 23 additions and 2 deletions.
  1. +1 −1 opal/corelib/array.rb
  2. +22 −1 opal/corelib/helpers.rb
2 changes: 1 addition & 1 deletion opal/corelib/array.rb
Original file line number Diff line number Diff line change
@@ -1015,7 +1015,7 @@ def join(sep = nil)
}
}
#{raise NoMethodError, "#{`item`.inspect} doesn't respond to #to_str, #to_ary or #to_s"};
#{raise NoMethodError, "#{Opal.inspect(`item`)} doesn't respond to #to_str, #to_ary or #to_s"};
}
if (sep === nil) {
23 changes: 22 additions & 1 deletion opal/corelib/helpers.rb
Original file line number Diff line number Diff line change
@@ -74,8 +74,29 @@ def self.destructure(args)
end

def self.respond_to?(obj, method)
return false unless `obj != null && obj._klass`
%x{
if (obj == null || !obj._klass) {
return false;
}
}

obj.respond_to? method
end

def self.inspect(obj)
%x{
if (obj === undefined) {
return "undefined";
}
else if (obj === null) {
return "null";
}
else if (!obj._klass) {
return obj.toString();
}
else {
return #{obj.inspect};
}
}
end
end