@@ -193,8 +193,12 @@ export default createEslintRule<SortClassesOptions, MESSAGE_ID>({
193
193
let sourceCode = getSourceCode ( context )
194
194
let className = node . parent . id ?. name
195
195
196
- let getDependencyName = ( nodeName : string , isStatic : boolean ) =>
197
- `${ isStatic ? 'static ' : '' } ${ nodeName } `
196
+ let getDependencyName = ( props : {
197
+ nodeNameWithoutStartingHash : string
198
+ isPrivateHash : boolean
199
+ isStatic : boolean
200
+ } ) =>
201
+ `${ props . isStatic ? 'static ' : '' } ${ props . isPrivateHash ? '#' : '' } ${ props . nodeNameWithoutStartingHash } `
198
202
199
203
/**
200
204
* Class methods should not be considered as dependencies
@@ -208,7 +212,11 @@ export default createEslintRule<SortClassesOptions, MESSAGE_ID>({
208
212
member . type === 'TSAbstractMethodDefinition' ) &&
209
213
'name' in member . key
210
214
) {
211
- return getDependencyName ( member . key . name , member . static )
215
+ return getDependencyName ( {
216
+ nodeNameWithoutStartingHash : member . key . name ,
217
+ isStatic : member . static ,
218
+ isPrivateHash : member . key . type === 'PrivateIdentifier' ,
219
+ } )
212
220
}
213
221
return null
214
222
} )
@@ -227,14 +235,16 @@ export default createEslintRule<SortClassesOptions, MESSAGE_ID>({
227
235
( nodeValue . object . type === 'ThisExpression' ||
228
236
( nodeValue . object . type === 'Identifier' &&
229
237
nodeValue . object . name === className ) ) &&
230
- nodeValue . property . type === 'Identifier'
238
+ ( nodeValue . property . type === 'Identifier' ||
239
+ nodeValue . property . type === 'PrivateIdentifier' )
231
240
) {
232
241
let isStaticDependency =
233
242
isMemberStatic || nodeValue . object . type === 'Identifier'
234
- let dependencyName = getDependencyName (
235
- nodeValue . property . name ,
236
- isStaticDependency ,
237
- )
243
+ let dependencyName = getDependencyName ( {
244
+ nodeNameWithoutStartingHash : nodeValue . property . name ,
245
+ isStatic : isStaticDependency ,
246
+ isPrivateHash : nodeValue . property . type === 'PrivateIdentifier' ,
247
+ } )
238
248
if ( ! classMethodsDependencyNames . has ( dependencyName ) ) {
239
249
dependencies . push ( dependencyName )
240
250
}
@@ -563,20 +573,18 @@ export default createEslintRule<SortClassesOptions, MESSAGE_ID>({
563
573
dependencies,
564
574
name,
565
575
addSafetySemicolonWhenInline,
566
- dependencyName : getDependencyName (
567
- name ,
568
- modifiers . includes ( 'static' ) ,
569
- ) ,
576
+ dependencyName : getDependencyName ( {
577
+ nodeNameWithoutStartingHash : name . startsWith ( '#' )
578
+ ? name . slice ( 1 )
579
+ : name ,
580
+ isPrivateHash,
581
+ isStatic : modifiers . includes ( 'static' ) ,
582
+ } ) ,
570
583
}
571
584
572
585
let comments = getCommentsBefore ( member , sourceCode )
573
586
let lastMember = accumulator . at ( - 1 ) ?. at ( - 1 )
574
- if (
575
- options . partitionByComment &&
576
- hasPartitionComment ( options . partitionByComment , comments )
577
- ) {
578
- accumulator . push ( [ ] )
579
- }
587
+
580
588
if (
581
589
( options . partitionByNewLine &&
582
590
lastMember &&
0 commit comments