@@ -313,16 +313,16 @@ function f5(shape: Shape) {
313
313
let name = p.name.get();
314
314
>name : Symbol(name, Decl(mappedTypes2.ts, 84, 7))
315
315
>p.name.get : Symbol(get, Decl(mappedTypes2.ts, 11, 17))
316
- >p.name : Symbol(name)
316
+ >p.name : Symbol(name, Decl(mappedTypes2.ts, 35, 17) )
317
317
>p : Symbol(p, Decl(mappedTypes2.ts, 83, 9))
318
- >name : Symbol(name)
318
+ >name : Symbol(name, Decl(mappedTypes2.ts, 35, 17) )
319
319
>get : Symbol(get, Decl(mappedTypes2.ts, 11, 17))
320
320
321
321
p.width.set(42);
322
322
>p.width.set : Symbol(set, Decl(mappedTypes2.ts, 12, 13))
323
- >p.width : Symbol(width)
323
+ >p.width : Symbol(width, Decl(mappedTypes2.ts, 36, 17) )
324
324
>p : Symbol(p, Decl(mappedTypes2.ts, 83, 9))
325
- >width : Symbol(width)
325
+ >width : Symbol(width, Decl(mappedTypes2.ts, 36, 17) )
326
326
>set : Symbol(set, Decl(mappedTypes2.ts, 12, 13))
327
327
}
328
328
@@ -334,19 +334,19 @@ function f6(shape: DeepReadonly<Shape>) {
334
334
335
335
let name = shape.name; // string
336
336
>name : Symbol(name, Decl(mappedTypes2.ts, 89, 7))
337
- >shape.name : Symbol(name)
337
+ >shape.name : Symbol(name, Decl(mappedTypes2.ts, 35, 17) )
338
338
>shape : Symbol(shape, Decl(mappedTypes2.ts, 88, 12))
339
- >name : Symbol(name)
339
+ >name : Symbol(name, Decl(mappedTypes2.ts, 35, 17) )
340
340
341
341
let location = shape.location; // DeepReadonly<Point>
342
342
>location : Symbol(location, Decl(mappedTypes2.ts, 90, 7))
343
- >shape.location : Symbol(location)
343
+ >shape.location : Symbol(location, Decl(mappedTypes2.ts, 38, 19) )
344
344
>shape : Symbol(shape, Decl(mappedTypes2.ts, 88, 12))
345
- >location : Symbol(location)
345
+ >location : Symbol(location, Decl(mappedTypes2.ts, 38, 19) )
346
346
347
347
let x = location.x; // number
348
348
>x : Symbol(x, Decl(mappedTypes2.ts, 91, 7))
349
- >location.x : Symbol(x)
349
+ >location.x : Symbol(x, Decl(mappedTypes2.ts, 30, 17) )
350
350
>location : Symbol(location, Decl(mappedTypes2.ts, 90, 7))
351
- >x : Symbol(x)
351
+ >x : Symbol(x, Decl(mappedTypes2.ts, 30, 17) )
352
352
}
0 commit comments