You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
classFoo{statica=(): i32=>{// ERROR TS1110: Type expected.return1;}b=(): i32=>{// ERROR TS1110: Type expected.return2;}}
Instance method automatically lower it to simple FunctionDeclaration due to class members are immutable in AS while class (static) function members can be reassigned so premature optimization is not possible.