bd622a6960
On dart2js, it returned the .source property of the underlying JS regexp, which may not be the same (e.g., for "/" and ""). BUG= http://dartbug.com/17998 R=sigurdm@google.com Review URL: https://codereview.chromium.org//250573002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@35368 260f80e4-7a28-3924-810f-c04153c831b5
28 lines
638 B
Dart
28 lines
638 B
Dart
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
// Dart test for testing regular expressions in Dart.
|
|
|
|
import "package:expect/expect.dart";
|
|
|
|
// Regression test for http://dartbug.com/17998
|
|
|
|
main() {
|
|
for (var s in [
|
|
r"a",
|
|
r"a|b",
|
|
r"(?:)",
|
|
r"^",
|
|
r"$",
|
|
r"^$",
|
|
r"$^",
|
|
r"",
|
|
r"\\",
|
|
r"/",
|
|
r"[^]",
|
|
"\x00",
|
|
]) {
|
|
Expect.equals(s, new RegExp(s).pattern);
|
|
}
|
|
}
|