RuntimePath
A conjunctive set of runtime type assignments. All assignments in the map must be satisfied simultaneously.
Example:
RuntimePath(
assignments = mapOf(
listOf("outer") to "OuterA",
listOf("outer", "inner") to "InnerX",
),
)Content copied to clipboard
means: outer is OuterA AND outer.inner is InnerX