keep edit
This commit is contained in:
42
test_doc_comment.m
Normal file
42
test_doc_comment.m
Normal 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
|
||||
|
Reference in New Issue
Block a user