-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(aliasing): added new resolvedName property to typeIdentifier obje…
…ct for import aliased declrations (#36) * fix(aliasing): added new resolvedName property to typeIdentifier object for import aliased declrations Signed-off-by: sanketshevkar <[email protected]> * fix(aliasing): added new resolvedName property to typeIdentifier object for import aliased declrations Signed-off-by: sanketshevkar <[email protected]> --------- Signed-off-by: sanketshevkar <[email protected]>
- Loading branch information
1 parent
826a20c
commit 9a02b5b
Showing
5 changed files
with
186 additions
and
71 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -84,6 +84,12 @@ | |
"isArray": false, | ||
"isOptional": false | ||
}, | ||
{ | ||
"$class": "[email protected]", | ||
"name": "resolvedName", | ||
"isArray": false, | ||
"isOptional": true | ||
}, | ||
{ | ||
"$class": "[email protected]", | ||
"name": "namespace", | ||
|
@@ -998,10 +1004,10 @@ | |
] | ||
}, | ||
{ | ||
"$class":"[email protected]", | ||
"name":"AliasedType", | ||
"isAbstract":false, | ||
"properties":[ | ||
"$class": "[email protected]", | ||
"name": "AliasedType", | ||
"isAbstract": false, | ||
"properties": [ | ||
{ | ||
"$class": "[email protected]", | ||
"name": "name", | ||
|
@@ -1089,7 +1095,6 @@ | |
"name": "Import" | ||
} | ||
}, | ||
|
||
{ | ||
"$class": "[email protected]", | ||
"name": "Model", | ||
|
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
Oops, something went wrong.