2017-02-09 11:24:08 +00:00
|
|
|
// Copyright 2017 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.
|
|
|
|
|
2017-06-22 13:46:04 +00:00
|
|
|
// Flags: --allow-natives-syntax
|
2017-02-09 11:24:08 +00:00
|
|
|
|
|
|
|
function createHTML() {
|
|
|
|
return '' + '<div><div><di';
|
2019-06-12 14:00:50 +00:00
|
|
|
};
|
|
|
|
%PrepareFunctionForOptimization(createHTML);
|
2017-02-09 11:24:08 +00:00
|
|
|
createHTML();
|
|
|
|
%OptimizeFunctionOnNextCall(createHTML);
|
|
|
|
|
|
|
|
/./.test(createHTML());
|