(Object x, Object y)
| 518 | } |
| 519 | |
| 520 | private static boolean sameType(Object x, Object y) { |
| 521 | return x.getClass() == y.getClass() || Starlark.type(x).equals(Starlark.type(y)); |
| 522 | } |
| 523 | |
| 524 | /** Returns the string form of a value as if by the Starlark expression {@code str(x)}. */ |
| 525 | public static String str(Object x, StarlarkSemantics semantics) { |
no test coverage detected