()
| 385 | public abstract ImmutableSet<StarlarkType> getTypes(); |
| 386 | |
| 387 | @Override |
| 388 | public final String toString() { |
| 389 | return getTypes().stream().map(StarlarkType::toString).collect(joining("|")); |
| 390 | } |
| 391 | } |
| 392 | |
| 393 | public static ListType list(StarlarkType elementType) { |