J2K Converter: Add copy/paste tests for references in extends/implements clauses

This commit is contained in:
Alexey Sedunov
2015-08-17 16:18:25 +03:00
parent 96f255225b
commit 3134e58251
10 changed files with 45 additions and 0 deletions
@@ -0,0 +1 @@
class B : X<String, X<Int, Any>>
@@ -0,0 +1,7 @@
class X<T, U> {
}
class A extends <selection>X<String, X<Integer, Object>></selection> {
}
@@ -0,0 +1 @@
class B : <caret>
@@ -0,0 +1 @@
class B : X<String, X<Int, Any>>
@@ -0,0 +1,7 @@
interface X<T, U> {
}
class A implements <selection>X<String, X<Integer, Object>></selection> {
}
@@ -0,0 +1 @@
class B : <caret>
@@ -0,0 +1 @@
class B : X<Any>
+7
View File
@@ -0,0 +1,7 @@
interface X<T> {
}
class A implements <selection>X</selection> {
}
+1
View File
@@ -0,0 +1 @@
class B : <caret>