| Index: src/json-parser.h
|
| diff --git a/src/json-parser.h b/src/json-parser.h
|
| index 60855a0a801f5c38d683ae442520ed046d79f83f..09320ab2bddfe3ae1ff84e35ce776ca00ea1f8fb 100644
|
| --- a/src/json-parser.h
|
| +++ b/src/json-parser.h
|
| @@ -358,19 +358,19 @@ Handle<Object> JsonParser<seq_ascii>::ParseJsonObject() {
|
| bool follow_expected = false;
|
| Handle<Map> target;
|
| if (seq_ascii) {
|
| - key = JSObject::ExpectedTransitionKey(map);
|
| + key = Map::ExpectedTransitionKey(map);
|
| follow_expected = !key.is_null() && ParseJsonString(key);
|
| }
|
| // If the expected transition hits, follow it.
|
| if (follow_expected) {
|
| - target = JSObject::ExpectedTransitionTarget(map);
|
| + target = Map::ExpectedTransitionTarget(map);
|
| } else {
|
| // If the expected transition failed, parse an internalized string and
|
| // try to find a matching transition.
|
| key = ParseJsonInternalizedString();
|
| if (key.is_null()) return ReportUnexpectedCharacter();
|
|
|
| - target = JSObject::FindTransitionToField(map, key);
|
| + target = Map::FindTransitionToField(map, key);
|
| // If a transition was found, follow it and continue.
|
| transitioning = !target.is_null();
|
| }
|
|
|