File tree 2 files changed +56
-2
lines changed
2 files changed +56
-2
lines changed Original file line number Diff line number Diff line change @@ -190,7 +190,56 @@ describe('compiler sfc: rewriteDefault', () => {
190
190
) . toMatchInlineSnapshot ( `
191
191
"/*
192
192
export default class Foo {}*/
193
- const script = class Bar {}"
193
+ class Bar {}
194
+ const script = Bar"
195
+ ` )
196
+ } )
197
+
198
+ test ( '@Component\nexport default class' , async ( ) => {
199
+ expect ( rewriteDefault ( `@Component\nexport default class Foo {}` , 'script' ) )
200
+ . toMatchInlineSnapshot ( `
201
+ "@Component
202
+ class Foo {}
203
+ const script = Foo"
204
+ ` )
205
+ } )
206
+
207
+ test ( '@Component\nexport default class w/ comments' , async ( ) => {
208
+ expect (
209
+ rewriteDefault ( `// export default\n@Component\nexport default class Foo {}` , 'script' )
210
+ ) . toMatchInlineSnapshot ( `
211
+ "// export default
212
+ @Component
213
+ class Foo {}
214
+ const script = Foo"
215
+ ` )
216
+ } )
217
+
218
+ test ( '@Component\nexport default class w/ comments 2' , async ( ) => {
219
+ expect (
220
+ rewriteDefault (
221
+ `export default {}\n` + `// @Component\n// export default class Foo {}` ,
222
+ 'script'
223
+ )
224
+ ) . toMatchInlineSnapshot ( `
225
+ "const script = {}
226
+ // @Component
227
+ // export default class Foo {}"
228
+ ` )
229
+ } )
230
+
231
+ test ( '@Component\nexport default class w/ comments 3' , async ( ) => {
232
+ expect (
233
+ rewriteDefault (
234
+ `/*\n@Component\nexport default class Foo {}*/\n` + `export default class Bar {}` ,
235
+ 'script'
236
+ )
237
+ ) . toMatchInlineSnapshot ( `
238
+ "/*
239
+ @Component
240
+ export default class Foo {}*/
241
+ class Bar {}
242
+ const script = Bar"
194
243
` )
195
244
} )
196
245
} )
Original file line number Diff line number Diff line change @@ -42,7 +42,12 @@ export function rewriteDefault(
42
42
} ) . program . body
43
43
ast . forEach ( node => {
44
44
if ( node . type === 'ExportDefaultDeclaration' ) {
45
- s . overwrite ( node . start ! , node . declaration . start ! , `const ${ as } = ` )
45
+ if ( node . declaration . type === 'ClassDeclaration' ) {
46
+ s . overwrite ( node . start ! , node . declaration . id . start ! , `class ` )
47
+ s . append ( `\nconst ${ as } = ${ node . declaration . id . name } ` )
48
+ } else {
49
+ s . overwrite ( node . start ! , node . declaration . start ! , `const ${ as } = ` )
50
+ }
46
51
}
47
52
if ( node . type === 'ExportNamedDeclaration' ) {
48
53
for ( const specifier of node . specifiers ) {
You can’t perform that action at this time.
0 commit comments