@@ -57,6 +57,109 @@ function add(a, b) {
5757
5858` ;
5959
60+ exports [` setupAndScript.vue - vue-verify: setupAndScript.vue 1` ] = `
61+ <script >
62+ // I am top level comment in this file.
63+ import z from 'z';
64+ import threeLevelRelativePath from "../../../threeLevelRelativePath";
65+ import sameLevelRelativePath from "./sameLevelRelativePath";
66+ import thirdParty from "third-party";
67+ import oneLevelRelativePath from "../oneLevelRelativePath";
68+ import otherthing from "@core/otherthing";
69+ import abc from "@core/abc";
70+ import twoLevelRelativePath from "../../twoLevelRelativePath";
71+ import component from "@ui/hello";
72+ import fourLevelRelativePath from "../../../../fourLevelRelativePath";
73+ import something from "@server/something";
74+ import xyz from "@ui/xyz";
75+ import { defineComponent } from 'vue'
76+
77+ function firstAdd(a,b) {
78+ return a + b ;
79+ }
80+ </script >
81+
82+ <script setup >
83+ // I am top level comment in this file.
84+ import z from 'z';
85+ import threeLevelRelativePath from "../../../threeLevelRelativePath";
86+ import sameLevelRelativePath from "./sameLevelRelativePath";
87+ import thirdParty from "third-party";
88+ import oneLevelRelativePath from "../oneLevelRelativePath";
89+ import otherthing from "@core/otherthing";
90+ import abc from "@core/abc";
91+ import twoLevelRelativePath from "../../twoLevelRelativePath";
92+ import component from "@ui/hello";
93+ import fourLevelRelativePath from "../../../../fourLevelRelativePath";
94+ import something from "@server/something";
95+ import xyz from "@ui/xyz";
96+ import { defineComponent } from 'vue'
97+
98+ function add(a,b) {
99+ return a + b ;
100+ }
101+ </script >
102+
103+ <template >
104+ <div ></div >
105+ </template >
106+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
107+ <script >
108+ // I am top level comment in this file.
109+ import thirdParty from "third-party";
110+ import { defineComponent } from "vue";
111+ import z from "z";
112+
113+ import abc from "@core/abc";
114+ import otherthing from "@core/otherthing";
115+
116+ import something from "@server/something";
117+
118+ import component from "@ui/hello";
119+ import xyz from "@ui/xyz";
120+
121+ import fourLevelRelativePath from "../../../../fourLevelRelativePath";
122+ import threeLevelRelativePath from "../../../threeLevelRelativePath";
123+ import twoLevelRelativePath from "../../twoLevelRelativePath";
124+ import oneLevelRelativePath from "../oneLevelRelativePath";
125+ import sameLevelRelativePath from "./sameLevelRelativePath";
126+
127+ function firstAdd(a, b) {
128+ return a + b ;
129+ }
130+ </script >
131+
132+ <script setup >
133+ // I am top level comment in this file.
134+ import thirdParty from "third-party";
135+ import { defineComponent } from "vue";
136+ import z from "z";
137+
138+ import abc from "@core/abc";
139+ import otherthing from "@core/otherthing";
140+
141+ import something from "@server/something";
142+
143+ import component from "@ui/hello";
144+ import xyz from "@ui/xyz";
145+
146+ import fourLevelRelativePath from "../../../../fourLevelRelativePath";
147+ import threeLevelRelativePath from "../../../threeLevelRelativePath";
148+ import twoLevelRelativePath from "../../twoLevelRelativePath";
149+ import oneLevelRelativePath from "../oneLevelRelativePath";
150+ import sameLevelRelativePath from "./sameLevelRelativePath";
151+
152+ function add(a, b) {
153+ return a + b ;
154+ }
155+ </script >
156+
157+ <template >
158+ <div ></div >
159+ </template >
160+
161+ ` ;
162+
60163exports [` sfc.vue - vue-verify: sfc.vue 1` ] = `
61164<script >
62165// I am top level comment in this file.
@@ -137,6 +240,25 @@ div {
137240
138241` ;
139242
243+ exports [` sfcWithSpecialReplacerGroups.vue - vue-verify: sfcWithSpecialReplacerGroups.vue 1` ] = `
244+ <script setup >
245+ let a = '$';
246+ let b = '$';
247+ let c = '$$';
248+ </script >
249+ <template ><div >{ { a + b + c }} </div ></template >
250+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
251+ <script setup >
252+ let a = "$";
253+ let b = "$";
254+ let c = "$$";
255+ </script >
256+ <template >
257+ <div >{ { a + b + c }} </div >
258+ </template >
259+
260+ ` ;
261+
140262exports [` ts.vue - vue-verify: ts.vue 1` ] = `
141263<script lang = " ts" >
142264// I am top level comment in this file.
0 commit comments