Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
resources
/
intentionDescriptions
/
IntroduceBackingPropertyIntention
/
after.kt.template
blob: 96534460ac36307edde9971ac1780c02372a104f [
file
] [
log
] [
blame
]
class
Foo
{
private
var
<spot>
_x
</
spot
>
=
""
var
x
:
String
get
()
=
_x
set
(
value
)
{
_x
=
value
}
}