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
This (re)adds support for using 'Self' to create instances of types when
used inside static or instance methods defined on a type. For example,
you can now do this:
type User {
let @name: String
fn static new(name: String) -> User {
Self(name: name)
}
}
This fixes#821.
Changelog: added
0 commit comments