when (dir) {
DIR_INSIDE_BACK -> {
return startReadTag(child, depth + 1)
}
DIR_INSIDE_LINE -> {
val ld = depth + 1
while (startReadTag(child, ld)) {
}
continue
}
DIR_BACK -> {
return false
}
DIR_LINE -> {
continue
}
}