Make parse_fast_json private (#9978)

Micro MR to make deprecated method private
This commit is contained in:
AdRiley 2024-05-17 18:47:11 +03:00 committed by GitHub
parent 8b389553b6
commit 5c9ee94812
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -162,8 +162,9 @@ Map.to_js_object self =
map_vector = self.to_vector
map_vector.map p-> [p.first.to_js_object, p.second.to_js_object]
## ICON convert
## PRIVATE
Extension for Text to allow use.
Deprecated: The `parse_json` method uses a faster implementation now by default
Text.parse_fast_json : Nothing | Boolean | Number | Text | Vector | JS_Object
Text.parse_fast_json self =
warning = Deprecated.Warning "Standard.Base.Data.Text.Text" "parse_fast_json" "Deprecated: The `parse_json` method uses a faster implementation now by default"