@@ -56,6 +56,7 @@ describe('calcDiagnosticsLocationForSelectorParserNode', () => {
5656 "start": {
5757 "column": 3,
5858 "line": 1,
59+ "offset": 2,
5960 },
6061 "type": "combinator",
6162 },
@@ -65,6 +66,7 @@ describe('calcDiagnosticsLocationForSelectorParserNode', () => {
6566 "start": {
6667 "column": 4,
6768 "line": 1,
69+ "offset": 3,
6870 },
6971 "type": "class",
7072 },
@@ -108,6 +110,7 @@ describe('calcDiagnosticsLocationForSelectorParserNode', () => {
108110 "start": {
109111 "column": 3,
110112 "line": 1,
113+ "offset": 2,
111114 },
112115 "type": "combinator",
113116 },
@@ -117,6 +120,7 @@ describe('calcDiagnosticsLocationForSelectorParserNode', () => {
117120 "start": {
118121 "column": 1,
119122 "line": 2,
123+ "offset": 3,
120124 },
121125 "type": "class",
122126 },
@@ -127,6 +131,7 @@ describe('calcDiagnosticsLocationForSelectorParserNode', () => {
127131 "start": {
128132 "column": 3,
129133 "line": 2,
134+ "offset": 5,
130135 },
131136 "type": "combinator",
132137 },
@@ -136,6 +141,7 @@ describe('calcDiagnosticsLocationForSelectorParserNode', () => {
136141 "start": {
137142 "column": 3,
138143 "line": 3,
144+ "offset": 8,
139145 },
140146 "type": "class",
141147 },
@@ -176,6 +182,7 @@ describe('calcDiagnosticsLocationForSelectorParserNode', () => {
176182 "start": {
177183 "column": 3,
178184 "line": 2,
185+ "offset": 24,
179186 },
180187 "type": "combinator",
181188 },
@@ -185,6 +192,7 @@ describe('calcDiagnosticsLocationForSelectorParserNode', () => {
185192 "start": {
186193 "column": 3,
187194 "line": 3,
195+ "offset": 27,
188196 },
189197 "type": "class",
190198 },
@@ -571,6 +579,7 @@ describe('parseRule', () => {
571579 "start": {
572580 "column": 8,
573581 "line": 1,
582+ "offset": 7,
574583 },
575584 "text": "A \`:global(...)\` is not allowed inside of \`:local(...)\`.",
576585 },
@@ -585,6 +594,7 @@ describe('parseRule', () => {
585594 "start": {
586595 "column": 9,
587596 "line": 2,
597+ "offset": 31,
588598 },
589599 "text": "A \`:local(...)\` is not allowed inside of \`:global(...)\`.",
590600 },
@@ -599,6 +609,7 @@ describe('parseRule', () => {
599609 "start": {
600610 "column": 8,
601611 "line": 3,
612+ "offset": 53,
602613 },
603614 "text": "A \`:local(...)\` is not allowed inside of \`:local(...)\`.",
604615 },
@@ -613,6 +624,7 @@ describe('parseRule', () => {
613624 "start": {
614625 "column": 9,
615626 "line": 4,
627+ "offset": 76,
616628 },
617629 "text": "A \`:global(...)\` is not allowed inside of \`:global(...)\`.",
618630 },
@@ -781,6 +793,7 @@ describe('parseRule', () => {
781793 "start": {
782794 "column": 6,
783795 "line": 1,
796+ "offset": 5,
784797 },
785798 "text": "\`a_\\u0032\` is not allowed because it is not a valid JavaScript identifier.",
786799 },
0 commit comments