| Index: src/ast.cc
|
| diff --git a/src/ast.cc b/src/ast.cc
|
| index 13e55894d58cb0560e3fcd39b89edb1735420652..4eaf4cee73460a1a47eb19b9763962fd0b3beeea 100644
|
| --- a/src/ast.cc
|
| +++ b/src/ast.cc
|
| @@ -581,17 +581,7 @@ bool Property::IsInlineable() const {
|
| }
|
|
|
|
|
| -bool Call::IsInlineable() const {
|
| - if (!expression()->IsInlineable()) return false;
|
| - const int count = arguments()->length();
|
| - for (int i = 0; i < count; ++i) {
|
| - if (!arguments()->at(i)->IsInlineable()) return false;
|
| - }
|
| - return true;
|
| -}
|
| -
|
| -
|
| -bool CallNew::IsInlineable() const {
|
| +bool CallBase::IsInlineable() const {
|
| if (!expression()->IsInlineable()) return false;
|
| const int count = arguments()->length();
|
| for (int i = 0; i < count; ++i) {
|
|
|