2011-09-07 08:35:18 +02:00
|
|
|
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
2014-07-22 01:09:02 +02:00
|
|
|
/*---
|
|
|
|
info: let P be ToString(pattern) and let F be ToString(flags)
|
2014-07-25 00:41:42 +02:00
|
|
|
es5id: 15.10.4.1_A8_T5
|
2014-07-22 01:09:02 +02:00
|
|
|
description: >
|
|
|
|
Pattern is new Object("abc{1}") and flags is
|
|
|
|
{toString:function(){return "";}}
|
|
|
|
---*/
|
2011-09-07 08:35:18 +02:00
|
|
|
|
2018-02-09 18:09:47 +01:00
|
|
|
var __re = new RegExp(new Object("abc{1}"), {toString:function(){return "";}});
|
2011-09-07 08:35:18 +02:00
|
|
|
|
2021-08-18 18:00:28 +02:00
|
|
|
assert.sameValue(__re.ignoreCase, false, 'The value of __re.ignoreCase is expected to be false');
|
|
|
|
assert.sameValue(__re.multiline, false, 'The value of __re.multiline is expected to be false');
|
|
|
|
assert.sameValue(__re.global, false, 'The value of __re.global is expected to be false');
|
|
|
|
assert.sameValue(__re.lastIndex, 0, 'The value of __re.lastIndex is expected to be 0');
|
|
|
|
assert.notSameValue(typeof __re.source, "undefined", 'The value of typeof __re.source is not "undefined"');
|