mirror of
https://github.com/tc39/test262.git
synced 2025-08-29 05:48:28 +02:00
28 lines
684 B
JavaScript
28 lines
684 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* The RegExp instance source property has the attribute ReadOnly
|
|
*
|
|
* @path ch15/15.10/15.10.7/15.10.7.1/S15.10.7.1_A10.js
|
|
* @description Checking if varying the source property fails
|
|
*/
|
|
|
|
__re = /./;
|
|
|
|
//CHECK#1
|
|
if (__re.hasOwnProperty('source') !== true) {
|
|
$FAIL('#1: __re = /./; __re.hasOwnProperty(\'source\') === true');
|
|
}
|
|
|
|
__obj = __re.source;
|
|
|
|
__re.source = "shifted";
|
|
|
|
//CHECK#2
|
|
if (__re.source !== __obj) {
|
|
$ERROR('#2: __re = /./; __obj = __re.source; __re.source = "shifted"; __re.source === __obj. Actual: ' + (__re.source));
|
|
}
|
|
|
|
|