frame_transpiler icon indicating copy to clipboard operation
frame_transpiler copied to clipboard

Improve call chain to track Frame types

Open frame-lang opened this issue 1 year ago • 0 comments


fn main {
    var call_test:#CallTest = #CallTest() 
    print(call_test.getSelf().getValue())
  
}

#CallTest 

    -interface-

    getSelf : #CallTest

    -machine-

    $S0 
        |getSelf| : #CallTest 
            ^(#)

    -operations-

    getValue : int {
        ^(1)
    }

##

frame-lang avatar Dec 15 '23 13:12 frame-lang