Chromium Code Reviews

Unified Diff: test/cctest/test-regexp.cc

Issue 10992: Implement $ for non-multiline. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 12 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: test/cctest/test-regexp.cc
===================================================================
--- test/cctest/test-regexp.cc (revision 860)
+++ test/cctest/test-regexp.cc (working copy)
@@ -1226,5 +1226,5 @@
TEST(Graph) {
V8::Initialize(NULL);
- Execute("(?:foo|bar$)", false, true);
+ Execute("foo$(?!bar)", false, true);
}

Powered by Google App Engine