Add PSI test templates for identifiers

This commit is contained in:
victor.petukhov
2018-09-25 13:02:03 +03:00
parent 4bfa90dc25
commit ed73513d48
28 changed files with 251 additions and 0 deletions
@@ -0,0 +1,17 @@
class A {
companion object <!ELEMENT!> {
}
}
class B {
companion object <!ELEMENT!>: A() {
}
}
class C {
companion object <!ELEMENT!>: B by expr, x1, A() {
}
}