blob: 5d62200a7a29100bd7aed36fe5bb9ff4eba783d6 [file] [log] [blame]
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
Direct eval code has the same `this` binding as the calling context (global
scope)
esid: sec-performeval
---*/
assert.sameValue(eval('this;'), this);