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

64
test_comment_removal.m Normal file
View File

@@ -0,0 +1,64 @@
//
// TestFile.m
// YuMi
//
// Created by Test on 2025/01/27.
// Copyright © 2025 Company. All rights reserved.
//
#import "TestFile.h"
//
@implementation TestFile
// MARK: - Initialization
///
- (instancetype)init {
self = [super init];
if (self) {
// TODO: -
NSString *url = @"https://example.com"; // URL//
/*
*/
/* FIXME: FIXME */
NSLog(@"// 字符串中的注释符号会被保护");
}
return self;
}
#pragma mark - Public Methods
// -
- (void)doSomething {
// -
NSString *test = @"test"; // -
int count = 0; //
// NOTE: -
[self helper];
}
// Helper method
- (void)helper {
//
return;
}
/*
*/
- (void)anotherMethod {
// Nothing
}
@end
// -