Files
Kmake/deps/v8/test/mjsunit/compiler/regress-404356997.js

28 lines
640 B
JavaScript
Raw Normal View History

2026-05-26 23:36:42 -07:00
// Copyright 2025 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.
// Flags: --allow-natives-syntax --turbofan --no-always-turbofan
const obj = {
func() {
const arrow = () => {
let caught = false;
try {
return super.length;
} catch (e) {
caught = true;
}
return caught;
};
%PrepareFunctionForOptimization(arrow);
%OptimizeFunctionOnNextCall(arrow);
return arrow();
}
};
const ta = new Uint8Array();
obj.__proto__ = ta;
assertTrue(obj.func());
assertTrue(obj.func());