JS: fixes after code review
This commit is contained in:
@@ -142,7 +142,7 @@ public final class StaticContext {
|
||||
private final DeclarationExporter exporter = new DeclarationExporter(this);
|
||||
|
||||
@NotNull
|
||||
private final Set<ClassDescriptor> classes = new HashSet<ClassDescriptor>();
|
||||
private final Set<ClassDescriptor> classes = new LinkedHashSet<ClassDescriptor>();
|
||||
|
||||
//TODO: too many parameters in constructor
|
||||
private StaticContext(
|
||||
|
||||
+3
-3
@@ -576,12 +576,12 @@ public class TranslationContext {
|
||||
}
|
||||
|
||||
@NotNull
|
||||
public JsFunction createTopLevelFunction(@NotNull DeclarationDescriptor descriptor) {
|
||||
return createTopLevelFunction(descriptor.toString());
|
||||
public JsFunction createRootScopedFunction(@NotNull DeclarationDescriptor descriptor) {
|
||||
return createRootScopedFunction(descriptor.toString());
|
||||
}
|
||||
|
||||
@NotNull
|
||||
public JsFunction createTopLevelFunction(@NotNull String description) {
|
||||
public JsFunction createRootScopedFunction(@NotNull String description) {
|
||||
return new JsFunction(staticContext.getRootFunction().getScope(), new JsBlock(), description);
|
||||
}
|
||||
|
||||
|
||||
+4
-4
@@ -74,7 +74,7 @@ class ClassTranslator private constructor(
|
||||
val scope = context().getScopeForDescriptor(descriptor)
|
||||
val context = context().newDeclaration(descriptor)
|
||||
|
||||
val constructorFunction = context.createTopLevelFunction(descriptor)
|
||||
val constructorFunction = context.createRootScopedFunction(descriptor)
|
||||
constructorFunction.name = context.getInnerNameForDescriptor(descriptor)
|
||||
context.addDeclarationStatement(constructorFunction.makeStmt())
|
||||
val enumInitFunction = if (descriptor.kind == ClassKind.ENUM_CLASS) createEnumInitFunction() else null
|
||||
@@ -141,9 +141,9 @@ class ClassTranslator private constructor(
|
||||
}
|
||||
|
||||
private fun createEnumInitFunction(): JsFunction {
|
||||
val function = context().createTopLevelFunction(descriptor)
|
||||
val function = context().createRootScopedFunction(descriptor)
|
||||
function.name = context().createGlobalName(StaticContext.getSuggestedName(descriptor) + "_initFields")
|
||||
val emptyFunction = context().createTopLevelFunction(descriptor)
|
||||
val emptyFunction = context().createRootScopedFunction(descriptor)
|
||||
function.body.statements += JsAstUtils.assignment(JsAstUtils.pureFqn(function.name, null), emptyFunction).makeStmt()
|
||||
context().addDeclarationStatement(function.makeStmt())
|
||||
return function
|
||||
@@ -419,7 +419,7 @@ class ClassTranslator private constructor(
|
||||
private fun addObjectMethods() {
|
||||
context().addDeclarationStatement(JsAstUtils.newVar(cachedInstanceName, JsLiteral.NULL))
|
||||
|
||||
val instanceFun = context().createTopLevelFunction("Instance function: " + descriptor)
|
||||
val instanceFun = context().createRootScopedFunction("Instance function: " + descriptor)
|
||||
instanceFun.name = context().getNameForObjectInstance(descriptor)
|
||||
|
||||
if (enumInitializerName == null) {
|
||||
|
||||
+1
-1
@@ -69,7 +69,7 @@ class DeclarationBodyVisitor(
|
||||
context.addDeclarationStatement(JsAstUtils.newVar(enumInstanceName, null))
|
||||
enumInitializer.body.statements += JsAstUtils.assignment(pureFqn(enumInstanceName, null), jsEnumEntryCreation).makeStmt()
|
||||
|
||||
val enumInstanceFunction = context.createTopLevelFunction(descriptor)
|
||||
val enumInstanceFunction = context.createRootScopedFunction(descriptor)
|
||||
enumInstanceFunction.name = context.getNameForObjectInstance(descriptor)
|
||||
context.addDeclarationStatement(enumInstanceFunction.makeStmt())
|
||||
|
||||
|
||||
+1
-1
@@ -189,7 +189,7 @@ class JsDataClassGenerator extends DataClassMethodGenerator {
|
||||
}
|
||||
|
||||
private JsFunction generateJsMethod(@NotNull FunctionDescriptor functionDescriptor) {
|
||||
JsFunction functionObject = context.createTopLevelFunction(functionDescriptor);
|
||||
JsFunction functionObject = context.createRootScopedFunction(functionDescriptor);
|
||||
ClassDescriptor containingClass = (ClassDescriptor) functionDescriptor.getContainingDeclaration();
|
||||
UtilsKt.addFunctionToPrototype(context, containingClass, functionDescriptor, functionObject);
|
||||
return functionObject;
|
||||
|
||||
@@ -253,7 +253,7 @@ public final class Translation {
|
||||
) {
|
||||
StaticContext staticContext = StaticContext.generateStaticContext(bindingTrace, config, moduleDescriptor);
|
||||
JsProgram program = staticContext.getProgram();
|
||||
program.getRootScope().declareName("_");
|
||||
JsName rootPackageName = program.getRootScope().declareName(Namer.getRootPackageName());
|
||||
|
||||
JsFunction rootFunction = staticContext.getRootFunction();
|
||||
JsBlock rootBlock = rootFunction.getBody();
|
||||
@@ -270,8 +270,6 @@ public final class Translation {
|
||||
}
|
||||
|
||||
mayBeGenerateTests(files, config, rootBlock, context);
|
||||
|
||||
JsName rootPackageName = program.getRootScope().declareName(Namer.getRootPackageName());
|
||||
rootFunction.getParameters().add(new JsParameter((rootPackageName)));
|
||||
|
||||
// Invoke function passing modules as arguments
|
||||
|
||||
+7
-1
@@ -19,6 +19,7 @@ package org.jetbrains.kotlin.js.translate.intrinsic.objects
|
||||
import com.google.dart.compiler.backend.js.ast.JsExpression
|
||||
import com.google.dart.compiler.backend.js.ast.JsName
|
||||
import org.jetbrains.kotlin.builtins.CompanionObjectMapping
|
||||
import org.jetbrains.kotlin.builtins.KotlinBuiltIns
|
||||
import org.jetbrains.kotlin.descriptors.ClassDescriptor
|
||||
import org.jetbrains.kotlin.js.translate.context.Namer
|
||||
import org.jetbrains.kotlin.js.translate.context.StaticContext
|
||||
@@ -26,6 +27,7 @@ import org.jetbrains.kotlin.js.translate.context.TranslationContext
|
||||
import org.jetbrains.kotlin.js.translate.utils.JsAstUtils
|
||||
import org.jetbrains.kotlin.name.FqName
|
||||
import org.jetbrains.kotlin.name.Name
|
||||
import org.jetbrains.kotlin.resolve.descriptorUtil.fqNameUnsafe
|
||||
|
||||
class DefaultClassObjectIntrinsic(val staticContext: StaticContext, val fqName: FqName): ObjectIntrinsic {
|
||||
private val innerName: JsName by lazy {
|
||||
@@ -42,7 +44,11 @@ class ObjectIntrinsics(private val staticContext: StaticContext) {
|
||||
fun getIntrinsic(classDescriptor: ClassDescriptor) = cache.getOrPut(classDescriptor) { createIntrinsic(classDescriptor) }
|
||||
|
||||
private fun createIntrinsic(classDescriptor: ClassDescriptor): ObjectIntrinsic {
|
||||
if (!CompanionObjectMapping.isMappedIntrinsicCompanionObject(classDescriptor)) return NO_OBJECT_INTRINSIC
|
||||
if (classDescriptor.fqNameUnsafe == KotlinBuiltIns.FQ_NAMES._enum ||
|
||||
!CompanionObjectMapping.isMappedIntrinsicCompanionObject(classDescriptor)
|
||||
) {
|
||||
return NO_OBJECT_INTRINSIC
|
||||
}
|
||||
|
||||
val containingDeclaration = classDescriptor.containingDeclaration
|
||||
val name = Name.identifier(containingDeclaration.name.asString() + "CompanionObject")
|
||||
|
||||
+2
-2
@@ -109,7 +109,7 @@ object CallableReferenceTranslator {
|
||||
ReferenceTranslator.translateAsValueReference(descriptor, context)
|
||||
}
|
||||
|
||||
val function = context.createTopLevelFunction(getter)
|
||||
val function = context.createRootScopedFunction(getter)
|
||||
function.body.statements += JsReturn(expression)
|
||||
|
||||
return function
|
||||
@@ -121,7 +121,7 @@ object CallableReferenceTranslator {
|
||||
return context.getInnerReference(setter)
|
||||
}
|
||||
|
||||
val function = context.createTopLevelFunction(setter)
|
||||
val function = context.createRootScopedFunction(setter)
|
||||
val valueParam = function.scope.declareFreshName("value")
|
||||
function.parameters += JsParameter(valueParam)
|
||||
|
||||
|
||||
+1
-4
@@ -68,10 +68,7 @@ public final class ReferenceTranslator {
|
||||
}
|
||||
|
||||
if (DescriptorUtils.isObject(descriptor) || DescriptorUtils.isEnumEntry(descriptor)) {
|
||||
if (AnnotationsUtils.isNativeObject(descriptor)) {
|
||||
return context.getQualifiedReference(descriptor);
|
||||
}
|
||||
else if (!context.isFromCurrentModule(descriptor)) {
|
||||
if (!context.isFromCurrentModule(descriptor)) {
|
||||
return getLazyReferenceToObject((ClassDescriptor) descriptor, context);
|
||||
}
|
||||
else {
|
||||
|
||||
-2
@@ -2,8 +2,6 @@ package foo
|
||||
|
||||
// HACKS
|
||||
|
||||
@native
|
||||
const val ROOT = "Kotlin.modules.JS_TESTS"
|
||||
@native
|
||||
const val PATH_TO_F_CREATOR = "B\$far\$lambda"
|
||||
@native
|
||||
|
||||
@@ -1,12 +1,13 @@
|
||||
package foo
|
||||
|
||||
internal val PACKAGE = "kotlin.modules.JS_TESTS.foo"
|
||||
// TODO: this feature is deprecated, remove this test when either @native annotation or its parameter get eliminated.
|
||||
|
||||
internal @native @JsName("\"O\"") val foo: String = noImpl
|
||||
internal @native @JsName("boo") val bar: String = noImpl
|
||||
internal @native("\"O\"") val foo: String = noImpl
|
||||
internal @native("boo") val bar: String = noImpl
|
||||
|
||||
internal class A
|
||||
internal fun proto(o: Any?): String = js("o.__proto__")
|
||||
internal @native("__proto__") val Any.proto: String get() = noImpl
|
||||
internal @native("__proto__") val A.proto: String get() = noImpl
|
||||
|
||||
internal fun actual(foo: String, @native("boo") bar: String) = foo + bar
|
||||
internal fun expected(foo: String, boo: String) = foo + boo
|
||||
@@ -23,9 +24,9 @@ fun box(): String {
|
||||
|
||||
val a = A()
|
||||
val any: Any = a
|
||||
val protoA = js("A.prototype")
|
||||
if (proto(a) != proto(any) || proto(a) != protoA)
|
||||
return "a.proto != any.proto /*${proto(a) != proto(any)}*/ || a.proto != A.prototype /*${proto(a) != protoA}*/"
|
||||
val protoA = A::class.js.asDynamic().prototype
|
||||
if (a.proto != any.proto || a.proto != protoA)
|
||||
return "a.proto != any.proto /*${a.proto != any.proto}*/ || a.proto != A.prototype /*${a.proto != protoA}*/"
|
||||
|
||||
return OK
|
||||
}
|
||||
|
||||
+2
-1
@@ -363,7 +363,8 @@
|
||||
propertyDescriptor.set.call(thisObject, value);
|
||||
}
|
||||
else if ("value" in propertyDescriptor) {
|
||||
propertyDescriptor.value = value;
|
||||
throw new Error("Assertion failed: Kotlin compiler should not generate simple JavaScript properties for overridable " +
|
||||
"Kotlin properties.");
|
||||
}
|
||||
}
|
||||
else {
|
||||
|
||||
Reference in New Issue
Block a user