mrodz / mscript

Programming Language
Apache License 2.0
4 stars 1 forks source link

[bug] Classes with fields of a `Class` type do not work #170

Closed mrodz closed 9 months ago

mrodz commented 9 months ago

Documentation Status

Snippet Responsible

class B {}
class A {
    inner: B

    fn set(self) {
        self.inner = B()
    }
}

Stack Trace of Error

<N/A>

Expected Behavior

Set inner to B()

Any ideas where MScript breaks?

Brain Dump (Optional)