File tree Expand file tree Collapse file tree
javascript/ql/test/library-tests/ModelGeneration Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ typeModel
66| (aliases).Alias1 | aliases | Member[AliasedClass] |
77| (aliases).Alias1.prototype | (aliases).Alias1 | Instance |
88| (aliases).Alias1.prototype.foo | (aliases).Alias1.prototype | Member[foo] |
9+ | (long-access-path).a.shortcut.d | long-access-path | Member[a].Member[b].Member[c].Member[d] |
10+ | (long-access-path).a.shortcut.d | long-access-path | Member[a].Member[shortcut].Member[d] |
11+ | (long-access-path).a.shortcut.d.e | (long-access-path).a.shortcut.d | Member[e] |
912| (reexport).func | reexport | Member[func] |
1013| (return-this).FluentInterface | return-this | Member[FluentInterface] |
1114| (return-this).FluentInterface.prototype | (return-this).FluentInterface | Instance |
Original file line number Diff line number Diff line change 1+ export const a = {
2+ b : {
3+ c : {
4+ d : {
5+ e : function ( ) { }
6+ }
7+ }
8+ }
9+ } ;
10+
11+ a . shortcut = a . b . c ;
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " long-access-path" ,
3+ "main" : " long-access-path.js"
4+ }
You can’t perform that action at this time.
0 commit comments