We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eaba865 commit 66d7153Copy full SHA for 66d7153
1 file changed
src/slang-nodes/ImportDeconstructionSymbols.ts
@@ -43,7 +43,7 @@ export class ImportDeconstructionSymbols implements SlangNode {
43
const items = path.map(print, 'items');
44
return printSeparatedList(
45
items,
46
- satisfies(compiler, '>=0.7.4') && items.length > 1
+ items.length > 1 && satisfies(compiler, '>=0.7.4')
47
? {
48
// if the compiler exists and is greater than or equal to 0.7.4 we will
49
// split the ImportDirective.
0 commit comments