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

Unified Diff: regexp2000/src/regexp-macro-assembler.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/regexp-macro-assembler.h ('k') | regexp2000/src/regexp-macro-assembler-ia32.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: regexp2000/src/regexp-macro-assembler.cc
diff --git a/regexp2000/src/regexp-macro-assembler.cc b/regexp2000/src/regexp-macro-assembler.cc
index 654f763221fe4f20b0cbb5527f1706764831c45b..9ee4d1eeed849a7d41d9a5616c9193d089bbf44a 100755
--- a/regexp2000/src/regexp-macro-assembler.cc
+++ b/regexp2000/src/regexp-macro-assembler.cc
@@ -32,9 +32,9 @@ namespace v8 { namespace internal {
ByteArrayProvider::ByteArrayProvider(int initial_size)
- : byte_array_size_(initial_size),
- current_byte_array_(NULL),
- current_byte_array_free_offset_(initial_size) {}
+ : byte_array_size_(initial_size),
+ current_byte_array_(NULL),
+ current_byte_array_free_offset_(initial_size) {}
template <typename T>
@@ -58,5 +58,4 @@ ArraySlice<T> ByteArrayProvider::GetBuffer(int size) {
current_byte_array_free_offset_ = free_offset + size;
return ArraySlice<T>(current_byte_array_, free_offset);
}
-
}}
« no previous file with comments | « regexp2000/src/regexp-macro-assembler.h ('k') | regexp2000/src/regexp-macro-assembler-ia32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698