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

Unified Diff: regexp2000/src/jsregexp.cc

Issue 10750: * Update to RegExp parsing and AST. (Closed)
Patch Set: Addressed review comments Created 12 years, 1 month 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 | « regexp2000/src/ast.h ('k') | regexp2000/src/parser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: regexp2000/src/jsregexp.cc
diff --git a/regexp2000/src/jsregexp.cc b/regexp2000/src/jsregexp.cc
index 57cb84dad129b2a05b180480d61c4a665f4bfe6d..523ed5b92a727ce7ff21257d71360db002c8b49d 100644
--- a/regexp2000/src/jsregexp.cc
+++ b/regexp2000/src/jsregexp.cc
@@ -1876,15 +1876,16 @@ Handle<FixedArray> RegExpEngine::Compile(RegExpParseResult* input,
byte codes[10240];
Re2kAssembler assembler(Vector<byte>(codes, 1024));
RegExpMacroAssemblerRe2k macro_assembler(&assembler);
- return compiler.Assemble(&macro_assembler, node, input->capture_count, ignore_case);
+ return compiler.Assemble(&macro_assembler,
+ node,
+ input->capture_count,
+ ignore_case);
}
RegExpMacroAssembler::RegExpMacroAssembler() {
-
}
RegExpMacroAssembler::~RegExpMacroAssembler() {
-
}
« no previous file with comments | « regexp2000/src/ast.h ('k') | regexp2000/src/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698