43 lines
473 B
Objective-C
43 lines
473 B
Objective-C
|
|
|
|
// 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
|
|
|