workflow_objc icon indicating copy to clipboard operation
workflow_objc copied to clipboard

Code Renderer for Objective-C calls

Open torarnv opened this issue 2 years ago • 10 comments

It would be nice if the signatures of the Objective-C messages would match more closely their form in practical use/documentation, etc. This is how they look right now:

image

Improvements would be:

  • No _ prefix in the signature
  • Automatic rename of arg1 to self and arg2 to sel in the disassembly
  • Removal of self and sel in the signature (these are implicit)
    • Or only sel for class selectors
  • Selector arguments in-line in the selector, e.g. -[NSView addSubview:(NSView*)arg1], instead of suffixed with ()

torarnv avatar Jan 03 '23 13:01 torarnv