2012-03-14 22:22:41 +01:00
|
|
|
// Copyright 2009 the Sputnik authors. All rights reserved.
|
2011-09-07 08:35:18 +02:00
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
2014-07-22 01:09:02 +02:00
|
|
|
/*---
|
|
|
|
info: "RegularExpressionFlags :: IdentifierPart"
|
|
|
|
description: "IdentifierPart :: \\u0067 (g)"
|
|
|
|
---*/
|
2011-09-07 08:35:18 +02:00
|
|
|
|
|
|
|
//CHECK#1
|
2012-01-16 21:51:55 +01:00
|
|
|
var regexp;
|
|
|
|
eval("regexp = /(?:)/\u0067");
|
2011-09-07 08:35:18 +02:00
|
|
|
if (regexp.global !== true) {
|
|
|
|
$ERROR('#1: var regexp = /(?:)/\\u0067; regexp.global === true. Actual: ' + (regexp.global));
|
2014-07-22 01:09:02 +02:00
|
|
|
}
|