adeln
10/13/2015, 2:09 PMif (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