Change parseCharacter visibility to be visible from lightTree module

This commit is contained in:
Ivan Cilcic
2019-07-09 16:54:30 +03:00
committed by Mikhail Glukhikh
parent b0a04b1061
commit 8bcea1cf85
@@ -35,7 +35,7 @@ import org.jetbrains.kotlin.resolve.constants.evaluate.*
import org.jetbrains.kotlin.types.expressions.OperatorConventions
import org.jetbrains.kotlin.util.OperatorNameConventions
internal fun String.parseCharacter(): Char? {
fun String.parseCharacter(): Char? {
// Strip the quotes
if (length < 2 || this[0] != '\'' || this[length - 1] != '\'') {
return null