fun isPrimitive()

in common/src/main/org/jetbrains/lincheck/descriptors/Types.kt [77:87]


    fun isPrimitive(type: Type?): Boolean {
        return (type is IntType ||
                type is LongType ||
                type is DoubleType ||
                type is FloatType ||
                type is BooleanType ||
                type is ByteType ||
                type is ShortType ||
                type is CharType
                )
    }