Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(384)

Unified Diff: test/preparser/strict-identifiers.pyt

Issue 25277003: Remove obsolete preparser binary and tests. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Preserve test suite. Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/preparser/preparser.status ('k') | test/preparser/testcfg.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/preparser/strict-identifiers.pyt
diff --git a/test/preparser/strict-identifiers.pyt b/test/preparser/strict-identifiers.pyt
index f979088689cfef9962375ef500099adcc1e11dd3..446980f701f84f5d240989057baaf7cabed868ed 100644
--- a/test/preparser/strict-identifiers.pyt
+++ b/test/preparser/strict-identifiers.pyt
@@ -147,25 +147,25 @@ label_strict = StrictTemplate("label-strict-$id", """
""")
break_normal = Template("break-normal-$id", """
- for (;;) {
+ $id: for (;false;) {
break $id;
}
""")
break_strict = StrictTemplate("break-strict-$id", """
- for (;;) {
+ $id: for (;false;) {
break $id;
}
""")
continue_normal = Template("continue-normal-$id", """
- for (;;) {
+ $id: for (;false;) {
continue $id;
}
""")
continue_strict = StrictTemplate("continue-strict-$id", """
- for (;;) {
+ $id: for (;false;) {
continue $id;
}
""")
« no previous file with comments | « test/preparser/preparser.status ('k') | test/preparser/testcfg.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698