keep edit

This commit is contained in:
edwinQQQ
2025-10-17 14:52:29 +08:00
parent 22185d799e
commit 517365879a
622 changed files with 40518 additions and 7298 deletions

42
test_doc_comment.m Normal file
View File

@@ -0,0 +1,42 @@
// Created by Test on 2025/01/27.
#import "TestDocComment.h"
- (void)showSuccessToast {
}
- (void)methodWithDocComment {
NSString *test = @"test";
[self process];
}
- (void)singleLineDocComment {
return;
}
- (void)swiftStyleComment {
}
- (NSString *)formalDocComment:(NSString *)name {
return name;
}
/** FIXME: */
- (void)importantDocComment {
return;
}
@end