nodejs/deps/v8/test/mjsunit/regress/regress-904275.js
Michaël Zasso 7b48713334
deps: update V8 to 7.3.492.25
PR-URL: https://github.com/nodejs/node/pull/25852
Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com>
2019-03-14 18:49:21 +01:00

31 lines
871 B
JavaScript

// Copyright 2018 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.
function __isPropertyOfType(obj, name) {
Object.getOwnPropertyDescriptor(obj, name)
}
function __getProperties(obj, type) {
for (let name of Object.getOwnPropertyNames(obj)) {
__isPropertyOfType(obj, name);
}
}
function __getRandomProperty(obj) {
let properties = __getProperties(obj);
}
function __f_6776(__v_33890, __v_33891) {
var __v_33896 = __v_33891();
__getRandomProperty([])
}
(function __f_6777() {
var __v_33906 = async () => { };
__f_6776(1, () => __v_33906())
})();
(function __f_6822() {
try {
__f_6776(1, () => __f_6822());
} catch (e) {}
var __v_34059 = async (__v_34079 = () => eval()) => { };
delete __v_34059[__getRandomProperty(__v_34059)];
})();