FLEXRuntimeConstants.m 946 B

12345678910111213141516171819202122232425
  1. //
  2. // FLEXRuntimeConstants.m
  3. // FLEX
  4. //
  5. // Created by Tanner on 3/11/20.
  6. // Copyright © 2020 Flipboard. All rights reserved.
  7. //
  8. #import "FLEXRuntimeConstants.h"
  9. const unsigned int kFLEXNumberOfImplicitArgs = 2;
  10. NSString *const kFLEXPropertyAttributeKeyTypeEncoding = @"T";
  11. NSString *const kFLEXPropertyAttributeKeyBackingIvarName = @"V";
  12. NSString *const kFLEXPropertyAttributeKeyReadOnly = @"R";
  13. NSString *const kFLEXPropertyAttributeKeyCopy = @"C";
  14. NSString *const kFLEXPropertyAttributeKeyRetain = @"&";
  15. NSString *const kFLEXPropertyAttributeKeyNonAtomic = @"N";
  16. NSString *const kFLEXPropertyAttributeKeyCustomGetter = @"G";
  17. NSString *const kFLEXPropertyAttributeKeyCustomSetter = @"S";
  18. NSString *const kFLEXPropertyAttributeKeyDynamic = @"D";
  19. NSString *const kFLEXPropertyAttributeKeyWeak = @"W";
  20. NSString *const kFLEXPropertyAttributeKeyGarbageCollectable = @"P";
  21. NSString *const kFLEXPropertyAttributeKeyOldStyleTypeEncoding = @"t";