commonMain.com.sunnychung.lib.multiplatform.kotlite.model.SymbolReferenceSet.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlite-interpreter-jvm Show documentation
Show all versions of kotlite-interpreter-jvm Show documentation
A Kotlin Multiplatform library to interpret Kotlite code, which is a subset of Kotlin language, in runtime in a safe way.
The newest version!
package com.sunnychung.lib.multiplatform.kotlite.model
class SymbolReferenceSet(val scopeLevel: Int) {
val properties: MutableSet = mutableSetOf()
val functions: MutableSet = mutableSetOf()
val extensionFunctions: MutableSet = mutableSetOf()
val classes: MutableSet = mutableSetOf()
val typeAlias: MutableSet = mutableSetOf()
}