Files
divkit/test_data/expression_test_data/function_signatures_to_string.json
tayrinn f601e6b80f Support toString() methods for dicts and arrays
28572a5bbabda6dd2939ace30b0b6613213dae14
2024-08-13 22:30:52 +03:00

141 lines
2.9 KiB
JSON

{
"signatures": [
{
"name": "toString(array) string",
"function_name": "toString",
"doc": "Returns a string representation of given value.",
"arguments": [
{
"type": "array",
"doc": "Value."
}
],
"result_type": "string",
"platforms": [
"android",
"ios",
"web"
]
},
{
"name": "toString(boolean) string",
"function_name": "toString",
"doc": "Returns a string representation of given value.",
"arguments": [
{
"type": "boolean",
"doc": "Value."
}
],
"result_type": "string",
"platforms": [
"android",
"ios",
"web"
]
},
{
"name": "toString(color) string",
"function_name": "toString",
"doc": "Returns a string representation of given value.",
"arguments": [
{
"type": "color",
"doc": "Value."
}
],
"result_type": "string",
"platforms": [
"android",
"ios",
"web"
]
},
{
"name": "toString(dict) string",
"function_name": "toString",
"doc": "Returns a string representation of given value.",
"arguments": [
{
"type": "dict",
"doc": "Value."
}
],
"result_type": "string",
"platforms": [
"android",
"ios",
"web"
]
},
{
"name": "toString(integer) string",
"function_name": "toString",
"doc": "Returns a string representation of given value.",
"arguments": [
{
"type": "integer",
"doc": "Value."
}
],
"result_type": "string",
"platforms": [
"android",
"ios",
"web"
]
},
{
"name": "toString(number) string",
"function_name": "toString",
"doc": "Returns a string representation of given value.",
"arguments": [
{
"type": "number",
"doc": "Value."
}
],
"result_type": "string",
"platforms": [
"android",
"ios",
"web"
]
},
{
"name": "toString(string) string",
"function_name": "toString",
"doc": "Returns a string representation of given value.",
"arguments": [
{
"type": "string",
"doc": "Value."
}
],
"result_type": "string",
"platforms": [
"android",
"ios",
"web"
]
},
{
"name": "toString(url) string",
"function_name": "toString",
"doc": "Returns a string representation of given value.",
"arguments": [
{
"type": "url",
"doc": "Value."
}
],
"result_type": "string",
"platforms": [
"android",
"ios",
"web"
]
}
]
}