We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95dad14 commit 6dead9bCopy full SHA for 6dead9b
src/compiler/transformers/ts.ts
@@ -1034,7 +1034,7 @@ namespace ts {
1034
* @param isStatic A value indicating whether to get properties from the static or instance side of the class.
1035
*/
1036
function getInitializedProperties(node: ClassExpression | ClassDeclaration, isStatic: boolean): PropertyDeclaration[] {
1037
- return filter(node.members, isStatic ? isStaticInitializedProperty : isInstanceInitializedProperty);
+ return filter(node.members, isStatic ? isStaticInitializedProperty : isInstanceInitializedProperty);
1038
}
1039
1040
/**
0 commit comments