es4j
es4j copied to clipboard
Problem: *Index.as interferes with Kotlin
In Kotlin, as is a reserved keyword, and leads to this:
@JvmField var X = SimpleIndex.`as` { o: TestEntity -> o.x }
as opposed to
@JvmField var X = SimpleIndex.as { o: TestEntity -> o.x }
which is far from great