Add reference to parse value parameters methods in light tree converter
This commit is contained in:
committed by
Mikhail Glukhikh
parent
bbf7263ddc
commit
c9d5202971
@@ -363,6 +363,9 @@ class Converter(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see org.jetbrains.kotlin.parsing.KotlinParsing.parseValueParameterList
|
||||||
|
*/
|
||||||
private fun convertValueParameters(valueParameters: LighterASTNode): List<ValueParameter> {
|
private fun convertValueParameters(valueParameters: LighterASTNode): List<ValueParameter> {
|
||||||
return valueParameters.forEachChildrenReturnList { node, container ->
|
return valueParameters.forEachChildrenReturnList { node, container ->
|
||||||
when (node.tokenType) {
|
when (node.tokenType) {
|
||||||
@@ -371,6 +374,9 @@ class Converter(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see org.jetbrains.kotlin.parsing.KotlinParsing.parseValueParameter
|
||||||
|
*/
|
||||||
private fun convertValueParameter(valueParameter: LighterASTNode): ValueParameter {
|
private fun convertValueParameter(valueParameter: LighterASTNode): ValueParameter {
|
||||||
var modifiers = Modifier(session)
|
var modifiers = Modifier(session)
|
||||||
var isVal = false
|
var isVal = false
|
||||||
|
|||||||
Reference in New Issue
Block a user