object DefaultTextMethodCallFormatter : TextMethodCallFormatter
(source)
Responsible to format a method call for text output (e.g. to the console) where it represents arguments of a method call by using their Any.toString representation with a few exceptions.
The exceptions are:
"
) and \r as well as \n are escaped.'
)
fun format(methodName: String, arguments: Array<out Any?>): () -> String
Returns a lazy representation of the method call to a method named methodName with the given arguments. |
|
fun formatArgument(argument: Any?): String
Formats the given argument. |
|
fun formatCall(methodName: String, arguments: Array<out Any?>): String
Returns a representation of a method call to a method named methodName with the given arguments. |