-
-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Relax rules for capturing self in uni closures
Closures of type `uni fn` are now allowed to capture `self` if it's a value type or a module. Changelog: added
- Loading branch information
1 parent
e12d2b3
commit de057f5
Showing
3 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
class A { | ||
fn foo { | ||
recover fn { bar } | ||
recover fn { self.bar } | ||
} | ||
|
||
fn bar {} | ||
} | ||
|
||
impl String { | ||
fn foo { | ||
recover fn { bar } | ||
recover fn { self.bar } | ||
} | ||
|
||
fn bar {} | ||
} | ||
|
||
fn example1 { | ||
recover fn { example2 } | ||
} | ||
|
||
fn example2 {} | ||
|
||
# closure_capture_self.inko:3:18 error(invalid-type): closures inside a 'recover' can't capture or use 'self' | ||
# closure_capture_self.inko:4:18 error(invalid-type): closures inside a 'recover' can't capture or use 'self' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters