2014-04-03 10:43:56 +00:00
|
|
|
// Copyright 2014 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.
|
|
|
|
|
2014-07-14 14:01:04 +00:00
|
|
|
Object.defineProperty(this, 'x', {set: function() { }});
|
2014-04-03 10:43:56 +00:00
|
|
|
Object.freeze(this);
|
2014-07-14 14:01:04 +00:00
|
|
|
eval('"use strict"; x = 20;');
|