| Index: runtime/vm/regexp_assembler_bytecode.h
|
| diff --git a/runtime/vm/regexp_assembler_bytecode.h b/runtime/vm/regexp_assembler_bytecode.h
|
| index eec47a419bc0d67524740ff4316a1d18146c1e1e..e8d61740475613797d342e137f6ce7fa1e465fdf 100644
|
| --- a/runtime/vm/regexp_assembler_bytecode.h
|
| +++ b/runtime/vm/regexp_assembler_bytecode.h
|
| @@ -10,7 +10,7 @@
|
|
|
| namespace dart {
|
|
|
| -class BytecodeRegExpMacroAssembler: public RegExpMacroAssembler {
|
| +class BytecodeRegExpMacroAssembler : public RegExpMacroAssembler {
|
| public:
|
| // Create an assembler. Instructions and relocation information are emitted
|
| // into a buffer, with the instructions starting from the beginning and the
|
| @@ -25,8 +25,7 @@ class BytecodeRegExpMacroAssembler: public RegExpMacroAssembler {
|
| // for code generation and assumes its size to be buffer_size. If the buffer
|
| // is too small, a fatal error occurs. No deallocation of the buffer is done
|
| // upon destruction of the assembler.
|
| - BytecodeRegExpMacroAssembler(ZoneGrowableArray<uint8_t>* buffer,
|
| - Zone* zone);
|
| + BytecodeRegExpMacroAssembler(ZoneGrowableArray<uint8_t>* buffer, Zone* zone);
|
| virtual ~BytecodeRegExpMacroAssembler();
|
|
|
| // The byte-code interpreter checks on each push anyway.
|
| @@ -101,7 +100,7 @@ class BytecodeRegExpMacroAssembler: public RegExpMacroAssembler {
|
| // extra goto.
|
| return true;
|
| }
|
| - virtual void Print(const char* str) { UNIMPLEMENTED(); }
|
| + virtual void Print(const char* str) { UNIMPLEMENTED(); }
|
| virtual void PrintBlocks() { UNIMPLEMENTED(); }
|
| /////
|
|
|
|
|