PSI Pattern Matching: Add equivalence tests for JetPsiUnifier

This commit is contained in:
Alexey Sedunov
2014-07-29 17:15:25 +04:00
parent a3758f9fa3
commit f1c18d0e3f
192 changed files with 3199 additions and 0 deletions
@@ -0,0 +1,16 @@
fun foo(a: Int) {
@A
while (true) {
@B
while (true) {
if (a > 0) <selection>continue@A</selection>
if (a < 0) continue@B
}
@B
while (true) {
if (a > 0) continue@A
if (a < 0) continue@B
}
}
}