diff --git a/compiler/frontend/src/jet/Library.jet b/compiler/frontend/src/jet/Library.jet index 4012dbc5795..67df91c00bd 100644 --- a/compiler/frontend/src/jet/Library.jet +++ b/compiler/frontend/src/jet/Library.jet @@ -1,13 +1,13 @@ namespace jet namespace typeinfo { - class TypeInfo { + class TypeInfo { fun isSubtypeOf(other : TypeInfo<*>) : Boolean fun isInstance(obj : Any?) : Boolean } fun typeinfo() : TypeInfo - fun typeinfo(expression : T) : TypeInfo + fun typeinfo(expression : T) : TypeInfo } namespace io {