usethesource / flybytes

Flybytes is an intermediate language between JVM bytecode and software languages (DSLs, PLs), for compilation and decompilation.
BSD 2-Clause "Simplified" License
16 stars 6 forks source link

Fix Modifier bug #19

Closed bys1 closed 1 year ago

bys1 commented 1 year ago

staticMethod(Type, str, list[Formal], list[Stat]) calls staticMethod(Modifier, Type, str, list[Forma], list[Stat]) with the public modifier, but since it uses "\public" rather than "\public()", this gives a CallFailed error.

jurgenvinju commented 1 year ago

Thanks!