File: bpSpan_inComments.baseline

package info (click to toggle)
node-typescript 3.3.3333-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 324,548 kB
  • sloc: makefile: 6; sh: 3
file content (19 lines) | stat: -rw-r--r-- 803 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

1  >/*comment here*/ var x = 10; /*comment here*/

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~=> Pos: (0 to 45)  SpanInfo: {"start":17,"length":10}
    >var x = 10
    >:=> (line 1, col 17) to (line 1, col 27)
--------------------------------
2  >// comment only line

    ~~~~~~~~~~~~~~~~~~~~~                         => Pos: (46 to 66)  SpanInfo: undefined
--------------------------------
3  >/*multiline comment

    ~~~~~~~~~~~~~~~~~~~~                          => Pos: (67 to 86)  SpanInfo: undefined
--------------------------------
4  >another line of multiline comment */ var y = 10; // comment here
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~=> Pos: (87 to 150)  SpanInfo: {"start":124,"length":10}
    >var y = 10
    >:=> (line 4, col 37) to (line 4, col 47)