File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
test/library-tests/TypeScript/HasUnderlyingType Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -317,8 +317,8 @@ module API {
317
317
exists ( Node pred , Label:: ApiLabel lbl , string predpath |
318
318
Impl:: edge ( pred , lbl , this ) and
319
319
predpath = pred .getAPath ( length - 1 ) and
320
- exists ( string space | if length = 1 then space = "" else space = " " |
321
- result = "(" + lbl + space + predpath + ")" and
320
+ exists ( string dot | if length = 1 then dot = "" else dot = ". " |
321
+ result = predpath + dot + lbl and
322
322
// avoid producing strings longer than 1MB
323
323
result .length ( ) < 1000 * 1000
324
324
)
Original file line number Diff line number Diff line change 1
1
underlyingTypeNode
2
- | foo | Bar | foo.ts:3:1:5:1 | use (instance (member Bar (member exports (module foo))) ) |
3
- | foo | Bar | foo.ts:3:12:3:12 | use (instance (member Bar (member exports (module foo))) ) |
2
+ | foo | Bar | foo.ts:3:1:5:1 | use moduleImport("foo").getMember(" exports").getMember("Bar").getInstance( ) |
3
+ | foo | Bar | foo.ts:3:12:3:12 | use moduleImport("foo").getMember(" exports").getMember("Bar").getInstance( ) |
4
4
#select
5
5
| foo.ts:3:12:3:12 | x | foo.Bar in unknown scope |
6
6
| foo.ts:4:10:4:10 | x | foo.Bar in unknown scope |
You can’t perform that action at this time.
0 commit comments