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

Side by Side Diff: test/cctest/test-regexp.cc

Issue 426233002: Land the Fan (disabled) (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Review feedback, rebase and "git cl format" Created 6 years, 4 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « test/cctest/test-parsing.cc ('k') | test/cctest/test-symbols.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 15 matching lines...) Expand all
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 27
28 28
29 #include <stdlib.h> 29 #include <stdlib.h>
30 30
31 #include "src/v8.h" 31 #include "src/v8.h"
32 32
33 #include "src/ast.h" 33 #include "src/ast.h"
34 #include "src/char-predicates-inl.h" 34 #include "src/char-predicates-inl.h"
35 #include "src/jsregexp.h" 35 #include "src/jsregexp.h"
36 #include "src/ostreams.h"
36 #include "src/parser.h" 37 #include "src/parser.h"
37 #include "src/regexp-macro-assembler.h" 38 #include "src/regexp-macro-assembler.h"
38 #include "src/regexp-macro-assembler-irregexp.h" 39 #include "src/regexp-macro-assembler-irregexp.h"
39 #include "src/string-stream.h" 40 #include "src/string-stream.h"
40 #include "src/zone-inl.h" 41 #include "src/zone-inl.h"
41 #ifdef V8_INTERPRETED_REGEXP 42 #ifdef V8_INTERPRETED_REGEXP
42 #include "src/interpreter-irregexp.h" 43 #include "src/interpreter-irregexp.h"
43 #else // V8_INTERPRETED_REGEXP 44 #else // V8_INTERPRETED_REGEXP
44 #include "src/macro-assembler.h" 45 #include "src/macro-assembler.h"
45 #if V8_TARGET_ARCH_ARM 46 #if V8_TARGET_ARCH_ARM
(...skipping 1772 matching lines...) Expand 10 before | Expand all | Expand 10 after
1818 ZoneList<CharacterRange> first_only(4, &zone); 1819 ZoneList<CharacterRange> first_only(4, &zone);
1819 ZoneList<CharacterRange> second_only(4, &zone); 1820 ZoneList<CharacterRange> second_only(4, &zone);
1820 ZoneList<CharacterRange> both(4, &zone); 1821 ZoneList<CharacterRange> both(4, &zone);
1821 } 1822 }
1822 1823
1823 1824
1824 TEST(Graph) { 1825 TEST(Graph) {
1825 V8::Initialize(NULL); 1826 V8::Initialize(NULL);
1826 Execute("\\b\\w+\\b", false, true, true); 1827 Execute("\\b\\w+\\b", false, true, true);
1827 } 1828 }
OLDNEW
« no previous file with comments | « test/cctest/test-parsing.cc ('k') | test/cctest/test-symbols.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698