also things like `if (apiLevel > x) { doStuff()...
# android
a
also things like
if (apiLevel > x) { doStuff(); }
in java could be neatly abstracted in an inline higher order function looking something like
apiLevel(x) { doStuff() }
in kotlin, which would require not only walking the AST but also inlining the inline functions