Kotlin: Add Variable.getKotlinType()

This commit is contained in:
Ian Lynagh
2021-11-03 16:32:25 +00:00
parent ef22194eed
commit ba56517900

View File

@@ -9,6 +9,9 @@ class Variable extends @variable, Annotatable, Element, Modifiable {
/** Gets the type of this variable. */
/*abstract*/ Type getType() { none() }
/** Gets the Kotlin type of this variable. */
/*abstract*/ KotlinType getKotlinType() { none() }
/** Gets an access to this variable. */
VarAccess getAnAccess() { variableBinding(result, this) }