-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Optimize lent in JS [backport:1.6] (#19393)
* Optimize lent in JS [backport:1.6] * addr on lent doesn't work anymore, don't use it * use unsafeAddr in test again for older versions (cherry picked from commit 07c7a8a)
- Loading branch information
Showing
3 changed files
with
80 additions
and
22 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,33 @@ | ||
discard """ | ||
output: ''' | ||
hmm | ||
100 | ||
hmm | ||
100 | ||
''' | ||
""" | ||
|
||
# #16800 | ||
|
||
type A = object | ||
b: int | ||
var t = A(b: 100) | ||
block: | ||
proc getValues: lent int = | ||
echo "hmm" | ||
result = t.b | ||
echo getValues() | ||
block: | ||
proc getValues: lent int = | ||
echo "hmm" | ||
t.b | ||
echo getValues() | ||
|
||
when false: # still an issue, #16908 | ||
template main = | ||
iterator fn[T](a:T): lent T = yield a | ||
let a = @[10] | ||
for b in fn(a): echo b | ||
|
||
static: main() | ||
main() |
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