Rename namespace class to {package.name}Package
Conflicts: compiler/jet.as.java.psi/src/org/jetbrains/jet/asJava/JavaElementFinder.java
This commit is contained in:
+1
-1
@@ -4,7 +4,7 @@ class X
|
||||
|
||||
fun f(m: M<X, X>): M<X, X> = throw Exception()
|
||||
|
||||
// method: namespace::f
|
||||
// method: _DefaultPackage::f
|
||||
// jvm signature: (LM;)LM;
|
||||
// generic signature: (LM<-LX;+LX;>;)LM<LX;LX;>;
|
||||
// kotlin signature: (LM<LX;LX;>;)LM<LX;LX;>;
|
||||
|
||||
@@ -2,7 +2,7 @@ class In<in T>
|
||||
|
||||
fun f(p: In<String>) {}
|
||||
|
||||
// method: namespace::f
|
||||
// method: _DefaultPackage::f
|
||||
// jvm signature: (LIn;)V
|
||||
// generic signature: (LIn<-Ljava/lang/String;>;)V
|
||||
// kotlin signature: (LIn<Ljava/lang/String;>;)V
|
||||
|
||||
@@ -2,7 +2,7 @@ class In<in T>
|
||||
|
||||
fun f(): In<String> = throw Exception()
|
||||
|
||||
// method: namespace::f
|
||||
// method: _DefaultPackage::f
|
||||
// jvm signature: ()LIn;
|
||||
// generic signature: ()LIn<Ljava/lang/String;>;
|
||||
// kotlin signature: ()LIn<Ljava/lang/String;>;
|
||||
|
||||
@@ -3,7 +3,7 @@ class X
|
||||
|
||||
fun f(p: In<In<X>>) {}
|
||||
|
||||
// method: namespace::f
|
||||
// method: _DefaultPackage::f
|
||||
// jvm signature: (LIn;)V
|
||||
// generic signature: (LIn<-LIn<-LX;>;>;)V
|
||||
// kotlin signature: (LIn<LIn<LX;>;>;)V
|
||||
|
||||
@@ -3,7 +3,7 @@ class X
|
||||
|
||||
fun f(): In<In<X>> = throw Exception()
|
||||
|
||||
// method: namespace::f
|
||||
// method: _DefaultPackage::f
|
||||
// jvm signature: ()LIn;
|
||||
// generic signature: ()LIn<LIn<-LX;>;>;
|
||||
// kotlin signature: ()LIn<LIn<LX;>;>;
|
||||
|
||||
@@ -4,7 +4,7 @@ class X
|
||||
|
||||
fun f(p: In<Out<X>>) {}
|
||||
|
||||
// method: namespace::f
|
||||
// method: _DefaultPackage::f
|
||||
// jvm signature: (LIn;)V
|
||||
// generic signature: (LIn<-LOut<+LX;>;>;)V
|
||||
// kotlin signature: (LIn<LOut<LX;>;>;)V
|
||||
|
||||
@@ -4,7 +4,7 @@ class X
|
||||
|
||||
fun f(): In<Out<X>> = throw Exception()
|
||||
|
||||
// method: namespace::f
|
||||
// method: _DefaultPackage::f
|
||||
// jvm signature: ()LIn;
|
||||
// generic signature: ()LIn<LOut<+LX;>;>;
|
||||
// kotlin signature: ()LIn<LOut<LX;>;>;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
fun f(p: List<String>) {}
|
||||
|
||||
// method: namespace::f
|
||||
// method: _DefaultPackage::f
|
||||
// jvm signature: (Ljava/util/List;)V
|
||||
// generic signature: (Ljava/util/List<+Ljava/lang/String;>;)V
|
||||
// kotlin signature: (Ljet/List<Ljava/lang/String;>;)V
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
fun f(): List<String> = throw Exception()
|
||||
|
||||
// method: namespace::f
|
||||
// method: _DefaultPackage::f
|
||||
// jvm signature: ()Ljava/util/List;
|
||||
// generic signature: ()Ljava/util/List<Ljava/lang/String;>;
|
||||
// kotlin signature: ()Ljet/List<Ljava/lang/String;>;
|
||||
|
||||
@@ -4,7 +4,7 @@ class X
|
||||
|
||||
fun f(p: Out<In<X>>) {}
|
||||
|
||||
// method: namespace::f
|
||||
// method: _DefaultPackage::f
|
||||
// jvm signature: (LOut;)V
|
||||
// generic signature: (LOut<+LIn<-LX;>;>;)V
|
||||
// kotlin signature: (LOut<LIn<LX;>;>;)V
|
||||
|
||||
@@ -4,7 +4,7 @@ class X
|
||||
|
||||
fun f(): Out<In<X>> = throw Exception()
|
||||
|
||||
// method: namespace::f
|
||||
// method: _DefaultPackage::f
|
||||
// jvm signature: ()LOut;
|
||||
// generic signature: ()LOut<LIn<-LX;>;>;
|
||||
// kotlin signature: ()LOut<LIn<LX;>;>;
|
||||
|
||||
@@ -3,7 +3,7 @@ class X
|
||||
|
||||
fun f(p: Out<Out<X>>) {}
|
||||
|
||||
// method: namespace::f
|
||||
// method: _DefaultPackage::f
|
||||
// jvm signature: (LOut;)V
|
||||
// generic signature: (LOut<+LOut<+LX;>;>;)V
|
||||
// kotlin signature: (LOut<LOut<LX;>;>;)V
|
||||
|
||||
@@ -13,7 +13,7 @@ class X
|
||||
// thus removing the wildcard would be restricting the use of the return value of the method, and we don't want do this.
|
||||
fun f(): Out<Out<X>> = throw Exception()
|
||||
|
||||
// method: namespace::f
|
||||
// method: _DefaultPackage::f
|
||||
// jvm signature: ()LOut;
|
||||
// generic signature: ()LOut<LOut<+LX;>;>;
|
||||
// kotlin signature: ()LOut<LOut<LX;>;>;
|
||||
|
||||
@@ -3,7 +3,7 @@ class X
|
||||
|
||||
val p: M<X> = throw Exception()
|
||||
|
||||
// method: namespace::getP
|
||||
// method: _DefaultPackage::getP
|
||||
// jvm signature: ()LM;
|
||||
// generic signature: ()LM<LX;>;
|
||||
// kotlin signature: null
|
||||
@@ -3,7 +3,7 @@ class X
|
||||
|
||||
val p: M<X> = throw Exception()
|
||||
|
||||
// method: namespace::getP
|
||||
// method: _DefaultPackage::getP
|
||||
// jvm signature: ()LM;
|
||||
// generic signature: ()LM<LX;>;
|
||||
// kotlin signature: null
|
||||
|
||||
@@ -3,7 +3,7 @@ class X
|
||||
|
||||
val p: M<X, X> = throw Exception()
|
||||
|
||||
// method: namespace::getP
|
||||
// method: _DefaultPackage::getP
|
||||
// jvm signature: ()LM;
|
||||
// generic signature: ()LM<LX;LX;>;
|
||||
// kotlin signature: null
|
||||
|
||||
@@ -3,7 +3,7 @@ class X
|
||||
|
||||
var p: M<X> = throw Exception()
|
||||
|
||||
// method: namespace::setP
|
||||
// method: _DefaultPackage::setP
|
||||
// jvm signature: (LM;)V
|
||||
// generic signature: (LM<-LX;>;)V
|
||||
// kotlin signature: null
|
||||
@@ -3,7 +3,7 @@ class X
|
||||
|
||||
var p: M<X> = throw Exception()
|
||||
|
||||
// method: namespace::setP
|
||||
// method: _DefaultPackage::setP
|
||||
// jvm signature: (LM;)V
|
||||
// generic signature: (LM<+LX;>;)V
|
||||
// kotlin signature: null
|
||||
|
||||
Reference in New Issue
Block a user