HaxeFoundation / HaxeFoundation/haxe
[macro] some issue with nested reification
Open
bug
platform-macro
- Dominant language
- Haxe
- Stars
- 6.9k
- Forks
- 715
- Avg merge
- 2d 2h
- Merged PRs (30d)
- 11
Description
Example:
```haxe
function main() {
macro $a{[for (i in [0, 1]) {
macro $v{i}; // error: Unknown identifier : i
}]};
}
```
If expressions array is generated first and then passed to `$a` then there is no error.
Contributor guide
Assessment
This issue has not been assessed yet.