1+
2+ 1 >import * as NS from "a";
3+
4+ ~~~~~~~~~~~~~~~~~~~~~~~~~ => Pos: (0 to 24) SpanInfo: {"start":0,"length":23}
5+ >import * as NS from "a"
6+ >:=> (line 1, col 0) to (line 1, col 23)
7+ --------------------------------
8+ 2 >import {a as A} from "a";
9+
10+ ~~~~~~~~~~~~~~~~~~~~~~~~~~ => Pos: (25 to 50) SpanInfo: {"start":25,"length":24}
11+ >import {a as A} from "a"
12+ >:=> (line 2, col 0) to (line 2, col 24)
13+ --------------------------------
14+ 3 > import d from "a";
15+
16+ ~~~~~~~~~~~~~~~~~~~~ => Pos: (51 to 70) SpanInfo: {"start":52,"length":17}
17+ >import d from "a"
18+ >:=> (line 3, col 1) to (line 3, col 18)
19+ --------------------------------
20+ 4 >import d2, {c, d as D} from "a";
21+
22+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ => Pos: (71 to 103) SpanInfo: {"start":71,"length":31}
23+ >import d2, {c, d as D} from "a"
24+ >:=> (line 4, col 0) to (line 4, col 31)
25+ --------------------------------
26+ 5 >import "a";
27+
28+ ~~~~~~~~~~~~ => Pos: (104 to 115) SpanInfo: {"start":104,"length":10}
29+ >import "a"
30+ >:=> (line 5, col 0) to (line 5, col 10)
31+ --------------------------------
32+ 6 >import e = require("a");
33+ ~~~~~~~~~~~~~~~~~~~~~~~~ => Pos: (116 to 139) SpanInfo: {"start":116,"length":23}
34+ >import e = require("a")
35+ >:=> (line 6, col 0) to (line 6, col 23)
0 commit comments