File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
test/library-tests/ModelGeneration Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -1319,7 +1319,7 @@ module API {
1319
1319
succ = MkDef ( rhs )
1320
1320
or
1321
1321
exists ( DataFlow:: ClassNode cls |
1322
- cls .getAnInstanceReference ( ) = rhs and
1322
+ cls .getAnInstanceReference ( ) . flowsTo ( rhs ) and
1323
1323
succ = MkClassInstance ( cls )
1324
1324
)
1325
1325
)
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ typeModel
5
5
| (aliases).Alias1 | aliases | Member[Alias4].Member[x].Member[x] |
6
6
| (aliases).Alias1 | aliases | Member[AliasedClass] |
7
7
| (aliases).Alias1.prototype | (aliases).Alias1 | Instance |
8
+ | (aliases).Alias1.prototype | (aliases).Alias1.prototype.foo | ReturnValue |
8
9
| (aliases).Alias1.prototype.foo | (aliases).Alias1.prototype | Member[foo] |
9
10
| (long-access-path).a.shortcut.d | long-access-path | Member[a].Member[b].Member[c].Member[d] |
10
11
| (long-access-path).a.shortcut.d | long-access-path | Member[a].Member[shortcut].Member[d] |
@@ -14,6 +15,7 @@ typeModel
14
15
| (return-this).FluentInterface.prototype | (return-this).FluentInterface | Instance |
15
16
| (return-this).FluentInterface.prototype | (return-this).FluentInterface.prototype.bar | ReturnValue |
16
17
| (return-this).FluentInterface.prototype | (return-this).FluentInterface.prototype.baz | ReturnValue |
18
+ | (return-this).FluentInterface.prototype | (return-this).FluentInterface.prototype.foo | ReturnValue |
17
19
| (return-this).FluentInterface.prototype.bar | (return-this).FluentInterface.prototype | Member[bar] |
18
20
| (return-this).FluentInterface.prototype.baz | (return-this).FluentInterface.prototype | Member[baz] |
19
21
| (return-this).FluentInterface.prototype.foo | (return-this).FluentInterface.prototype | Member[foo] |
You can’t perform that action at this time.
0 commit comments