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

Unified Diff: runtime/vm/regexp_assembler_bytecode_inl.h

Issue 2974233002: VM: Re-format to use at most one newline between functions (Closed)
Patch Set: Rebase and merge Created 3 years, 5 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 | « runtime/vm/regexp_assembler_bytecode.cc ('k') | runtime/vm/regexp_assembler_ir.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/regexp_assembler_bytecode_inl.h
diff --git a/runtime/vm/regexp_assembler_bytecode_inl.h b/runtime/vm/regexp_assembler_bytecode_inl.h
index d2fe476928836335b45fd7c246a0584e1397c366..76e1dc16a5eb96984f7cbd724940f733915c5464 100644
--- a/runtime/vm/regexp_assembler_bytecode_inl.h
+++ b/runtime/vm/regexp_assembler_bytecode_inl.h
@@ -22,7 +22,6 @@ void BytecodeRegExpMacroAssembler::Emit(uint32_t byte,
pc_ += 4;
}
-
void BytecodeRegExpMacroAssembler::Emit16(uint32_t word) {
ASSERT(pc_ <= buffer_->length());
if (pc_ + 1 >= buffer_->length()) {
@@ -32,7 +31,6 @@ void BytecodeRegExpMacroAssembler::Emit16(uint32_t word) {
pc_ += 2;
}
-
void BytecodeRegExpMacroAssembler::Emit8(uint32_t word) {
ASSERT(pc_ <= buffer_->length());
if (pc_ == buffer_->length()) {
@@ -42,7 +40,6 @@ void BytecodeRegExpMacroAssembler::Emit8(uint32_t word) {
pc_ += 1;
}
-
void BytecodeRegExpMacroAssembler::Emit32(uint32_t word) {
ASSERT(pc_ <= buffer_->length());
if (pc_ + 3 >= buffer_->length()) {
« no previous file with comments | « runtime/vm/regexp_assembler_bytecode.cc ('k') | runtime/vm/regexp_assembler_ir.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698