Bug 1159469 - Add get function to JSJitCallArguments; r=jorendorff

This commit is contained in:
Kyle Machulis 2015-04-27 19:27:55 -07:00
parent afedc6926e
commit 2141039518

View File

@ -2263,7 +2263,9 @@ class JSJitMethodCallArgs : protected JS::detail::CallArgsBase<JS::detail::NoUse
return argv_[-2].toObject();
}
// Add get() as needed
JS::HandleValue get(unsigned i) const {
return Base::get(i);
}
};
struct JSJitMethodCallArgsTraits