public class methods
This commit is contained in:
parent
961228ca0b
commit
3ef80616d8
@ -402,7 +402,9 @@ class Compiler(
|
|||||||
}
|
}
|
||||||
|
|
||||||
enum class AccessType(val isMutable: Boolean) {
|
enum class AccessType(val isMutable: Boolean) {
|
||||||
Val(false), Var(true), Initialization(false)
|
Val(false), Var(true),
|
||||||
|
@Suppress("unused")
|
||||||
|
Initialization(false)
|
||||||
}
|
}
|
||||||
|
|
||||||
enum class Visibility {
|
enum class Visibility {
|
||||||
@ -728,8 +730,8 @@ class Compiler(
|
|||||||
val className = nameToken.value
|
val className = nameToken.value
|
||||||
lateinit var classContext: Context
|
lateinit var classContext: Context
|
||||||
|
|
||||||
val defaultAccess = if (isStruct) AccessType.Var else AccessType.Initialization
|
@Suppress("UNUSED_VARIABLE") val defaultAccess = if (isStruct) AccessType.Var else AccessType.Initialization
|
||||||
val defaultVisibility = Visibility.Public
|
@Suppress("UNUSED_VARIABLE") val defaultVisibility = Visibility.Public
|
||||||
|
|
||||||
// create instance constructor
|
// create instance constructor
|
||||||
// create custom objClass with all fields and instance constructor
|
// create custom objClass with all fields and instance constructor
|
||||||
@ -741,14 +743,11 @@ class Compiler(
|
|||||||
|
|
||||||
// the context now is a "class creation context", we must use its args to initialize
|
// the context now is a "class creation context", we must use its args to initialize
|
||||||
// fields. Note that 'this' is already set by class
|
// fields. Note that 'this' is already set by class
|
||||||
constructorArgsDeclaration?.let { cad ->
|
constructorArgsDeclaration?.assignToContext(this)
|
||||||
cad.assignToContext(this)
|
|
||||||
// note that accessors are created in ObjClass instance, not during instance
|
|
||||||
// initialization (not here)
|
|
||||||
}
|
|
||||||
bodyInit?.execute(this)
|
bodyInit?.execute(this)
|
||||||
// export public
|
// export public
|
||||||
for( (name,record) in objects ) {
|
for( (name,record) in objects ) {
|
||||||
|
println("-- $name $record")
|
||||||
when(record.visibility) {
|
when(record.visibility) {
|
||||||
Visibility.Public -> {
|
Visibility.Public -> {
|
||||||
thisObj.publicFields += name
|
thisObj.publicFields += name
|
||||||
|
@ -69,7 +69,7 @@ open class Obj {
|
|||||||
args: Arguments = Arguments.EMPTY
|
args: Arguments = Arguments.EMPTY
|
||||||
): T = invokeInstanceMethod(context, name, args) as T
|
): T = invokeInstanceMethod(context, name, args) as T
|
||||||
|
|
||||||
suspend fun invokeInstanceMethod(
|
open suspend fun invokeInstanceMethod(
|
||||||
context: Context,
|
context: Context,
|
||||||
name: String,
|
name: String,
|
||||||
args: Arguments = Arguments.EMPTY
|
args: Arguments = Arguments.EMPTY
|
||||||
|
@ -151,25 +151,3 @@ val ObjArray by lazy {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class ObjInstance(override val objClass: ObjClass) : Obj() {
|
|
||||||
|
|
||||||
internal val publicFields = mutableSetOf<String>()
|
|
||||||
internal val protectedFields = mutableSetOf<String>()
|
|
||||||
|
|
||||||
internal lateinit var instanceContext: Context
|
|
||||||
|
|
||||||
override suspend fun readField(context: Context, name: String): ObjRecord {
|
|
||||||
return if( name in publicFields ) instanceContext[name]!!
|
|
||||||
else super.readField(context, name)
|
|
||||||
}
|
|
||||||
|
|
||||||
override suspend fun writeField(context: Context, name: String, newValue: Obj) {
|
|
||||||
if( name in publicFields ) {
|
|
||||||
val f = instanceContext[name]!!
|
|
||||||
if( !f.isMutable ) ObjIllegalAssignmentError(context, "can't reassign val $name").raise()
|
|
||||||
if( f.value.assign(context, newValue) == null)
|
|
||||||
f.value = newValue
|
|
||||||
}
|
|
||||||
else super.writeField(context, name, newValue)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -0,0 +1,29 @@
|
|||||||
|
package net.sergeych.lyng
|
||||||
|
|
||||||
|
class ObjInstance(override val objClass: ObjClass) : Obj() {
|
||||||
|
|
||||||
|
internal val publicFields = mutableSetOf<String>()
|
||||||
|
internal val protectedFields = mutableSetOf<String>()
|
||||||
|
|
||||||
|
internal lateinit var instanceContext: Context
|
||||||
|
|
||||||
|
override suspend fun readField(context: Context, name: String): ObjRecord {
|
||||||
|
return if( name in publicFields ) instanceContext[name]!!
|
||||||
|
else super.readField(context, name)
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun writeField(context: Context, name: String, newValue: Obj) {
|
||||||
|
if( name in publicFields ) {
|
||||||
|
val f = instanceContext[name]!!
|
||||||
|
if( !f.isMutable ) ObjIllegalAssignmentError(context, "can't reassign val $name").raise()
|
||||||
|
if( f.value.assign(context, newValue) == null)
|
||||||
|
f.value = newValue
|
||||||
|
}
|
||||||
|
else super.writeField(context, name, newValue)
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun invokeInstanceMethod(context: Context, name: String, args: Arguments): Obj {
|
||||||
|
if( name in publicFields ) return instanceContext[name]!!.value.invoke(context, this, args)
|
||||||
|
return super.invokeInstanceMethod(context, name, args)
|
||||||
|
}
|
||||||
|
}
|
@ -1435,4 +1435,22 @@ class ScriptTest {
|
|||||||
assert( p.length == 5 )
|
assert( p.length == 5 )
|
||||||
""".trimIndent())
|
""".trimIndent())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun testStructBodyFun() = runTest {
|
||||||
|
val c = Context()
|
||||||
|
c.eval("""
|
||||||
|
struct Point(x,y) {
|
||||||
|
fun length() {
|
||||||
|
sqrt(x*x+y*y)
|
||||||
|
}
|
||||||
|
var foo = "zero"
|
||||||
|
}
|
||||||
|
val p = Point(3,4)
|
||||||
|
assertEquals(5, p.length())
|
||||||
|
p.y = 10
|
||||||
|
println(p.length())
|
||||||
|
assertEquals(sqrt(109), p.length())
|
||||||
|
""".trimIndent())
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user