Files
real-e-party-iOS/test_doc_comment.m
2025-10-17 14:52:29 +08:00

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