Skip to content

Commit 6dead9b

Browse files
author
Yui T
committed
Fix linting error
1 parent 95dad14 commit 6dead9b

File tree

1 file changed

+1
-1
lines changed
  • src/compiler/transformers

1 file changed

+1
-1
lines changed

src/compiler/transformers/ts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1034,7 +1034,7 @@ namespace ts {
10341034
* @param isStatic A value indicating whether to get properties from the static or instance side of the class.
10351035
*/
10361036
function getInitializedProperties(node: ClassExpression | ClassDeclaration, isStatic: boolean): PropertyDeclaration[] {
1037-
return filter(node.members, isStatic ? isStaticInitializedProperty : isInstanceInitializedProperty);
1037+
return filter(node.members, isStatic ? isStaticInitializedProperty : isInstanceInitializedProperty);
10381038
}
10391039

10401040
/**

0 commit comments

Comments
 (0)