Chromium Code Reviews| Index: test/mjsunit/regress/regress-642409.js |
| diff --git a/test/mjsunit/regress/regress-642409.js b/test/mjsunit/regress/regress-642409.js |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..49771777242925022b066a873ebf23efd7652a20 |
| --- /dev/null |
| +++ b/test/mjsunit/regress/regress-642409.js |
| @@ -0,0 +1,19 @@ |
| +// Copyright 2016 the V8 project authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +class SuperClass { |
| +} |
| + |
| +class SubClass extends SuperClass { |
| + constructor() { |
| + super(); |
| + this.doSomething(); |
| + } |
| + doSomething() { |
| + } |
| +} |
| + |
| +for (var i=0; i<50000; i++) { |
|
Michael Starzinger
2016/09/06 11:11:22
I assume this loop is here to trigger optimization
rmcilroy
2016/09/06 11:27:21
Good point, done.
|
| + let inst = new SubClass(); |
| +} |