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: >
|
|
|
|
RegularExpressionFirstChar :: BackslashSequence :: \LineTerminator is
|
|
|
|
incorrect
|
|
|
|
description: Paragraph separator, with eval
|
|
|
|
---*/
|
2011-09-07 08:35:18 +02:00
|
|
|
|
|
|
|
//CHECK#1
|
|
|
|
try {
|
|
|
|
eval("/\\\u2029/").source;
|
|
|
|
$ERROR('#1.1: RegularExpressionFirstChar :: BackslashSequence :: \\Paragraph separator is incorrect. Actual: ' + (eval("/\\\u2029/").source));
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
if ((e instanceof SyntaxError) !== true) {
|
|
|
|
$ERROR('#1.2: RegularExpressionFirstChar :: BackslashSequence :: \\Paragraph separator is incorrect. Actual: ' + (e));
|
|
|
|
}
|
2014-07-22 01:09:02 +02:00
|
|
|
}
|