Skip to content

Commit d567d73

Browse files
committed
fix formatting
1 parent b832853 commit d567d73

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/transformers/declarations/transform.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1906,8 +1906,8 @@ func (tx *DeclarationTransformer) transformExpandoAssignment(node *ast.BinaryExp
19061906
replacement := make([]*ast.Node, 0)
19071907

19081908
flags := ast.GetCombinedModifierFlags(declaration)
1909-
if flags & ast.ModifierFlagsExport != 0 {
1910-
if flags & ast.ModifierFlagsDefault != 0 {
1909+
if flags&ast.ModifierFlagsExport != 0 {
1910+
if flags&ast.ModifierFlagsDefault != 0 {
19111911
if n := tx.transformExpandoHost(name, declaration); n != nil {
19121912
replacement = append(replacement, n)
19131913
}

0 commit comments

Comments
 (0)