michael@0: // Copyright 2009 the Sputnik authors. All rights reserved. michael@0: // This code is governed by the BSD license found in the LICENSE file. michael@0: michael@0: /** michael@0: * The this value associated with an executioncontext is immutable michael@0: * michael@0: * @path ch10/10.1/S10.1.7_A1_T1.js michael@0: * @description Checking if deleting "this" fails michael@0: */ michael@0: michael@0: //CHECK#1 michael@0: if (delete this !== true) michael@0: $ERROR('#1: The this value associated with an executioncontext is immutable. Actual: this was deleted'); michael@0: michael@0: