Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
controlFlowAnalysis
/
kt4126.fir.kt
blob: cebe74c945eabc41ee4a5b87853877c607d23928 [
file
]
public
data
class
ProductGroup
(
val short_name
:
String
,
val parent
:
ProductGroup
?)
{
val name
:
String
=
if
(
parent
==
null
)
short_name
else
"${parent.name} $short_name"
}