-
- All Implemented Interfaces:
public interface KSBuiltIns
-
-
Method Summary
Modifier and Type Method Description abstract KSTypegetAnyType()Common Standard Library types. abstract KSTypegetNothingType()abstract KSTypegetUnitType()abstract KSTypegetNumberType()abstract KSTypegetByteType()abstract KSTypegetShortType()abstract KSTypegetIntType()abstract KSTypegetLongType()abstract KSTypegetFloatType()abstract KSTypegetDoubleType()abstract KSTypegetCharType()abstract KSTypegetBooleanType()abstract KSTypegetStringType()abstract KSTypegetIterableType()abstract KSTypegetAnnotationType()abstract KSTypegetArrayType()-
-
Method Detail
-
getAnyType
abstract KSType getAnyType()
Common Standard Library types. Use Resolver.getClassDeclarationByName for other types.
-
getNothingType
abstract KSType getNothingType()
-
getUnitType
abstract KSType getUnitType()
-
getNumberType
abstract KSType getNumberType()
-
getByteType
abstract KSType getByteType()
-
getShortType
abstract KSType getShortType()
-
getIntType
abstract KSType getIntType()
-
getLongType
abstract KSType getLongType()
-
getFloatType
abstract KSType getFloatType()
-
getDoubleType
abstract KSType getDoubleType()
-
getCharType
abstract KSType getCharType()
-
getBooleanType
abstract KSType getBooleanType()
-
getStringType
abstract KSType getStringType()
-
getIterableType
abstract KSType getIterableType()
-
getAnnotationType
abstract KSType getAnnotationType()
-
getArrayType
abstract KSType getArrayType()
-
-
-
-