Artifact eff01755449bc6ee04ba2e1f14be828c755b9617771595a8ea97396bcc1a9d67:
- File
src/Identifier.m
— part of check-in
[75e920ae30]
at
2025-03-29 14:25:43
on branch trunk
— Switch from clang-format to manual formatting
clang-format does too many weird things. (user: js, size: 487) [annotate] [blame] [check-ins using]
#import "Identifier.h" // contains ALL vars/commands/aliases static OFMutableDictionary<OFString *, __kindof Identifier *> *identifiers; @implementation Identifier + (void)initialize { if (self == Identifier.class) identifiers = [[OFMutableDictionary alloc] init]; } + (OFMutableDictionary<OFString *, __kindof Identifier *> *)identifiers { return identifiers; } - (instancetype)initWithName: (OFString *)name { self = [super init]; _name = [name copy]; return self; } @end