summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/regress/regress-1404863.js
blob: 7c656a0be16b067cab62e32dee9eb58e6dc53871 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2022 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.

const template = `class Foo { foo(){} }`

// Keep recursively embedding the template inside itself until we stack
// overflow. This should not segfault.
let s = template;
while (true) {
  try {
    eval(s);
  } catch (e) {
    // A stack overflow exception eventually is expected.
    break;
  }
  s = s.replace("foo(){}", `foo(){ ${s} }`);
}