| Index: src/objects-inl.h
|
| diff --git a/src/objects-inl.h b/src/objects-inl.h
|
| index 75b9918721708be26ff451d853f9294607f69ce2..8b8470b78ab54b617126a61e0e6e8328a0bcf500 100644
|
| --- a/src/objects-inl.h
|
| +++ b/src/objects-inl.h
|
| @@ -6516,7 +6516,7 @@ JSRegExp::Flags JSRegExp::GetFlags() {
|
| String* JSRegExp::Pattern() {
|
| DCHECK(this->data()->IsFixedArray());
|
| Object* data = this->data();
|
| - String* pattern= String::cast(FixedArray::cast(data)->get(kSourceIndex));
|
| + String* pattern = String::cast(FixedArray::cast(data)->get(kSourceIndex));
|
| return pattern;
|
| }
|
|
|
|
|