| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include <stdlib.h> | 5 #include <stdlib.h> |
| 6 #include <limits> | 6 #include <limits> |
| 7 | 7 |
| 8 #include "src/v8.h" | 8 #include "src/v8.h" |
| 9 | 9 |
| 10 #include "src/arguments.h" | 10 #include "src/arguments.h" |
| (...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 517 // Handle stepping into constructors if step into is active. | 517 // Handle stepping into constructors if step into is active. |
| 518 if (debug->StepInActive()) debug->HandleStepIn(function, true); | 518 if (debug->StepInActive()) debug->HandleStepIn(function, true); |
| 519 return *isolate->factory()->undefined_value(); | 519 return *isolate->factory()->undefined_value(); |
| 520 } | 520 } |
| 521 | 521 |
| 522 | 522 |
| 523 RUNTIME_FUNCTION(Runtime_DefaultConstructorCallSuper) { | 523 RUNTIME_FUNCTION(Runtime_DefaultConstructorCallSuper) { |
| 524 UNIMPLEMENTED(); | 524 UNIMPLEMENTED(); |
| 525 return nullptr; | 525 return nullptr; |
| 526 } | 526 } |
| 527 | |
| 528 | |
| 529 RUNTIME_FUNCTION(Runtime_CallSuperWithSpread) { | |
| 530 UNIMPLEMENTED(); | |
| 531 return nullptr; | |
| 532 } | |
| 533 } // namespace internal | 527 } // namespace internal |
| 534 } // namespace v8 | 528 } // namespace v8 |
| OLD | NEW |