| Index: src/ast-value-factory.cc
|
| diff --git a/src/ast-value-factory.cc b/src/ast-value-factory.cc
|
| index dcfd289091cb3117e85ee85121e9229df2c7e33e..7b5158971f0829984f5a71c3ad9cfdcc1016d1cc 100644
|
| --- a/src/ast-value-factory.cc
|
| +++ b/src/ast-value-factory.cc
|
| @@ -56,22 +56,22 @@ class AstRawStringInternalizationKey : public HashTableKey {
|
| explicit AstRawStringInternalizationKey(const AstRawString* string)
|
| : string_(string) {}
|
|
|
| - virtual bool IsMatch(Object* other) V8_OVERRIDE {
|
| + virtual bool IsMatch(Object* other) OVERRIDE {
|
| if (string_->is_one_byte_)
|
| return String::cast(other)->IsOneByteEqualTo(string_->literal_bytes_);
|
| return String::cast(other)->IsTwoByteEqualTo(
|
| Vector<const uint16_t>::cast(string_->literal_bytes_));
|
| }
|
|
|
| - virtual uint32_t Hash() V8_OVERRIDE {
|
| + virtual uint32_t Hash() OVERRIDE {
|
| return string_->hash() >> Name::kHashShift;
|
| }
|
|
|
| - virtual uint32_t HashForObject(Object* key) V8_OVERRIDE {
|
| + virtual uint32_t HashForObject(Object* key) OVERRIDE {
|
| return String::cast(key)->Hash();
|
| }
|
|
|
| - virtual Handle<Object> AsHandle(Isolate* isolate) V8_OVERRIDE {
|
| + virtual Handle<Object> AsHandle(Isolate* isolate) OVERRIDE {
|
| if (string_->is_one_byte_)
|
| return isolate->factory()->NewOneByteInternalizedString(
|
| string_->literal_bytes_, string_->hash());
|
|
|