git://git.webkit.org
/
WebKit-https.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
JavaScriptCore:
[WebKit-https.git]
/
LayoutTests
/
fast
/
js
/
resources
/
pretty-print.js
1
//description(
2
"This test checks that regexps and strings with are pretty-printed correctly"
3
//);
4
5
function f() {
6
var re = /test/g;
7
var s = '\n\r\\';
8
}
9
10
eval(f.toString());
11
12
var successfullyParsed = true;