replace this. by $ for fields inside anonymous initializers
This commit is contained in:
@@ -62,7 +62,7 @@ public class Converter {
|
|||||||
List<Statement> result = new LinkedList<Statement>();
|
List<Statement> result = new LinkedList<Statement>();
|
||||||
for (Field f : fields) {
|
for (Field f : fields) {
|
||||||
final String identifierToKotlin = f.getIdentifier().toKotlin();
|
final String identifierToKotlin = f.getIdentifier().toKotlin();
|
||||||
result.add(new DummyStringStatement("this." + identifierToKotlin + " = " + identifierToKotlin));
|
result.add(new DummyStringStatement("$" + identifierToKotlin + " = " + identifierToKotlin));
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@@ -87,7 +87,7 @@ public class Converter {
|
|||||||
final IdentifierImpl name = new IdentifierImpl(psiClass.getName());
|
final IdentifierImpl name = new IdentifierImpl(psiClass.getName());
|
||||||
|
|
||||||
// we create primary constructor
|
// we create primary constructor
|
||||||
if (!psiClass.isEnum() && getPrimaryConstructor(psiClass) == null) {
|
if (!psiClass.isEnum() && !psiClass.isInterface() && getPrimaryConstructor(psiClass) == null) {
|
||||||
final List<Field> finalOrWithEmptyInitializer = getFinalOrWithEmptyInitializer(fields);
|
final List<Field> finalOrWithEmptyInitializer = getFinalOrWithEmptyInitializer(fields);
|
||||||
final Map<String, String> initializers = new HashMap<String, String>();
|
final Map<String, String> initializers = new HashMap<String, String>();
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ class object {
|
|||||||
val ourOut : PrintStream?
|
val ourOut : PrintStream?
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
this.ourOut = ourOut
|
$ourOut = ourOut
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
open class User() {
|
open class User() {
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
open class Library(myString : String?) {
|
open class Library(myString : String?) {
|
||||||
public val myString : String?
|
public val myString : String?
|
||||||
{
|
{
|
||||||
this.myString = myString
|
$myString = myString
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
open class User() {
|
open class User() {
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ var a : String?
|
|||||||
var b : String?
|
var b : String?
|
||||||
var c : String? = "abc"
|
var c : String? = "abc"
|
||||||
{
|
{
|
||||||
this.a = a
|
$a = a
|
||||||
this.b = b
|
$b = b
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -22,8 +22,8 @@ open public fun getName() : String? {
|
|||||||
return myName
|
return myName
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
this.myName = myName
|
$myName = myName
|
||||||
this.myHasDollar = myHasDollar
|
$myHasDollar = myHasDollar
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
public open class User() {
|
public open class User() {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
open class C(f : Foo?) {
|
open class C(f : Foo?) {
|
||||||
var f : Foo?
|
var f : Foo?
|
||||||
{
|
{
|
||||||
this.f = f
|
$f = f
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
open class C(f : Foo?) {
|
open class C(f : Foo?) {
|
||||||
private var f : Foo?
|
private var f : Foo?
|
||||||
{
|
{
|
||||||
this.f = f
|
$f = f
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
open class C(f : Foo?) {
|
open class C(f : Foo?) {
|
||||||
protected var f : Foo?
|
protected var f : Foo?
|
||||||
{
|
{
|
||||||
this.f = f
|
$f = f
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
open class C(f : Foo?) {
|
open class C(f : Foo?) {
|
||||||
public var f : Foo?
|
public var f : Foo?
|
||||||
{
|
{
|
||||||
this.f = f
|
$f = f
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
open class C(f : Foo?) {
|
open class C(f : Foo?) {
|
||||||
val f : Foo? = Foo(1, 2)
|
val f : Foo? = Foo(1, 2)
|
||||||
{
|
{
|
||||||
this.f = f
|
$f = f
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
open class C(f : Foo?) {
|
open class C(f : Foo?) {
|
||||||
var f : Foo?
|
var f : Foo?
|
||||||
{
|
{
|
||||||
this.f = f
|
$f = f
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -4,9 +4,4 @@ val IN : String? = "in"
|
|||||||
val AT : String? = "@"
|
val AT : String? = "@"
|
||||||
val COMMA_WITH_SPACE : String? = (COMMA + SPACE)
|
val COMMA_WITH_SPACE : String? = (COMMA + SPACE)
|
||||||
}
|
}
|
||||||
{
|
|
||||||
this.IN = IN
|
|
||||||
this.AT = AT
|
|
||||||
this.COMMA_WITH_SPACE = COMMA_WITH_SPACE
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -4,9 +4,4 @@ public val IN : String? = "in"
|
|||||||
public val AT : String? = "@"
|
public val AT : String? = "@"
|
||||||
public val COMMA_WITH_SPACE : String? = (COMMA + SPACE)
|
public val COMMA_WITH_SPACE : String? = (COMMA + SPACE)
|
||||||
}
|
}
|
||||||
{
|
|
||||||
this.IN = IN
|
|
||||||
this.AT = AT
|
|
||||||
this.COMMA_WITH_SPACE = COMMA_WITH_SPACE
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user