-
-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: synthesize shape in sub-environment scope
- Loading branch information
Showing
2 changed files
with
107 additions
and
75 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,17 @@ | ||
Currently implementing: | ||
|
||
> This file is for work-in-progress and can help separating features that are being implemented to regressions | ||
### Types | ||
|
||
#### Generics scope | ||
|
||
> Generics are scoped to the function they are declared in | ||
```ts | ||
function x<YEA>() {} | ||
|
||
type B = YEA; | ||
``` | ||
|
||
- Could not find type 'YEA' |
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