Platform header annotator: implementation + simple multi-platform highlighting tests #KT-14905 Fixed

This commit is contained in:
Mikhail Glukhikh
2016-12-05 15:58:56 +03:00
parent 9ec1c5dc35
commit 7649232f86
12 changed files with 241 additions and 6 deletions
@@ -0,0 +1,3 @@
header class <error descr="[HEADER_WITHOUT_IMPLEMENTATION] No implementation is found for header declaration 'My'">My</error> {
}
@@ -0,0 +1,15 @@
<error descr="[IMPLEMENTATION_WITHOUT_HEADER] Modifier 'impl' is only applicable to members that are initially declared in platform-independent code">impl</error> class Your {
}
header class <error descr="[HEADER_WITHOUT_IMPLEMENTATION] No implementation is found for header declaration 'His'">His</error> {
}
header class Their {
}
impl class Their {
}