6b60f19168
This introduces a bailout point for class literals right after the %DefineClass function has been called. Otherwise the FrameState after class literal evaluation might contain the literal itself. R=jarin@chromium.org TEST=mjsunit/regress/regress-crbug-480819 BUG=chromium:480819 LOG=N Review URL: https://codereview.chromium.org/1104673004 Cr-Commit-Position: refs/heads/master@{#28043}
11 lines
315 B
JavaScript
11 lines
315 B
JavaScript
// Copyright 2015 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: --turbo-filter=* --always-opt --turbo-deoptimization --noanalyze-environment-liveness
|
|
|
|
(function() {
|
|
"use strict";
|
|
class C1 {}
|
|
})();
|