nodeContextIsThenOfIfStmt

open fun nodeContextIsThenOfIfStmt(parentContext: Context): Boolean(source)

if() {
    // Does not match here (doesn't need to, as stuff inside of the if() is likely in context..)
} else {
    // Does not match here, as the else block is a field inside of an ifstmt as opposed to child
}

Return

true, If this is an else inside of an if...