The dynamic type is not supported in code targeting the JVM
Being a statically typed language, Kotlin still has to interoperate with untyped or loosely typed environments, such as the JavaScript ecosystem. To facilitate these use cases, the dynamic
type is available in the language:
The dynamic
type basically turns off Kotlin's type checker:
dynamic
or passed to a function that takes dynamic
as a parameter;null
-checks are disabled for such values.The most peculiar feature of dynamic
is that we are allowed to call any property or function with any parameters on a dynamic
variable:
On the JavaScript platform this code will be compiled "as is": dyn.whatever(1)
in Kotlin becomes dyn.whatever(1)
in the generated JavaScript code.
When calling functions written in Kotlin on values of dynamic
type, keep in mind the name mangling performed by the Kotlin to JavaScript compiler. You may need to use the @JsName annotation to assign well-defined names to the functions that you need to call.
A dynamic call always returns dynamic
as a result, so we can chain such calls freely:
When we pass a lambda to a dynamic call, all of its parameters by default have the type dynamic
:
Expressions using values of dynamic
type are translated to JavaScript "as is", and do not use the Kotlin operator conventions. The following operators are supported:
+
, -
, *
, /
, %
, >
, <
>=
, <=
, ==
, !=
, ===
, !==
, &&
, ||
-
, +
, !
++
, --
+=
, -=
, *=
, /=
, %=
d[a]
, more than one argument is an errord[a1] = a2
, more than one argument in []
is an errorin
, !in
and ..
operations with values of type dynamic
are forbidden.
For a more technical description, see the spec document.
© 2010–2019 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/docs/reference/dynamic-type.html