Support for 'as' and temporary support for 'is'

This commit is contained in:
Valentin Kipyatkov
2016-08-25 01:13:05 +03:00
parent 1674beb64b
commit 5d427d8d2e
3 changed files with 22 additions and 0 deletions
@@ -198,6 +198,15 @@ private class Processor(
return true
}
}
is KtIsExpression -> {
return true //TODO!
}
is KtBinaryExpressionWithTypeRHS -> {
processSuspiciousExpression(typeRefParent)
return true
}
}
}