You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 5, 2019. It is now read-only.
Many of the docs in libs may include examples with annotations. That is actually the case in Kategory.
We should ensure that ank is able to process annotations as part of the script evaluation in the same fashion we are preprocessing with kapt
Ex:
Should compile:
@higherkind data classX<A>(vala:A) : XKind<A>
X(1)
Currently:
Exception in thread "main" javax.script.ScriptException: error: unresolved reference: XKind
@higherkind data class X<A>(val a: A) : XKind<A>
The text was updated successfully, but these errors were encountered:
Many of the docs in libs may include examples with annotations. That is actually the case in Kategory.
We should ensure that ank is able to process annotations as part of the script evaluation in the same fashion we are preprocessing with
kapt
Ex:
Should compile:
Currently:
The text was updated successfully, but these errors were encountered: