Index: src/json-parser.h |
diff --git a/src/json-parser.h b/src/json-parser.h |
index e9cd66bc22fe23f45e67a23a9b34e52cbe764ce0..33885fa559b7a5c9aad7a45143758111c3029838 100644 |
--- a/src/json-parser.h |
+++ b/src/json-parser.h |
@@ -361,7 +361,7 @@ Handle<Object> JsonParser<seq_ascii>::ParseJsonObject() { |
Handle<Object> value = ParseJsonValue(); |
if (value.is_null()) return ReportUnexpectedCharacter(); |
- JSObject::SetOwnElement(json_object, index, value, kSloppyMode); |
+ JSObject::SetOwnElement(json_object, index, value, SLOPPY); |
continue; |
} |
// Not an index, fallback to the slow path. |