Prints an informal, human-readable representation of the value. By default dispatches to the repr method. @param printer a printer to be used for formatting nested values.
(Printer printer, StarlarkSemantics semantics)
| 59 | * @param printer a printer to be used for formatting nested values. |
| 60 | */ |
| 61 | default void str(Printer printer, StarlarkSemantics semantics) { |
| 62 | repr(printer); |
| 63 | } |
| 64 |
no outgoing calls
no test coverage detected