-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[typescript] fix evaluation of angular keyvalue pipe (WEB-51209)
GitOrigin-RevId: 8913ad5fccf2f066634216cef78cfa4cc1ec9c73
- Loading branch information
1 parent
68bd739
commit b7a89a6
Showing
9 changed files
with
17,620 additions
and
5 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
10 changes: 10 additions & 0 deletions
10
AngularJS/test/org/angular2/codeInsight/data/ngFor/NgForWithPipe.ts
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,10 @@ | ||
import {Component} from "@angular/core"; | ||
|
||
@Component({ | ||
selector: 'app-root', | ||
templateUrl: './NgForWithPipeHTML.html', | ||
}) | ||
export class AppComponent { | ||
record: Record<string, any> = {"person": {"name": "John", "age": "20"}}; | ||
} | ||
|
5 changes: 5 additions & 0 deletions
5
AngularJS/test/org/angular2/codeInsight/data/ngFor/NgForWithPipeHTML.html
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,5 @@ | ||
<div class="content" role="main"> | ||
<div *ngFor="let item of record | keyvalue"> | ||
{{item<caret>}} | ||
</div> | ||
</div> |
1 change: 1 addition & 0 deletions
1
AngularJS/test/org/angular2/codeInsight/data/ngFor/package.json
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,5 +1,6 @@ | ||
{ | ||
"dependencies": { | ||
"@angular/common": "0.0.0", | ||
"@angular/core": "0.0.0" | ||
} | ||
} |
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
2,858 changes: 2,858 additions & 0 deletions
2,858
...lar2/modules/node_modules/@angular#common/13.3.5/node_modules/@angular/common/common.d.ts
Large diffs are not rendered by default.
Oops, something went wrong.
105 changes: 105 additions & 0 deletions
105
...ar2/modules/node_modules/@angular#common/13.3.5/node_modules/@angular/common/package.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.