blob: 7af5e079fae3862d850a69a7e5da30ebd24918e3 [file] [log] [blame]
function prototypeChain(global) {
let result = [];
while (global !== null) {
let thrown = false;
let next = global.__proto__;
try {
global.__proto__ = {};
result.push('mutable');
} catch (e) {
result.push('immutable');
}
global = next;
}
return result;
}