Skip to content

Instantly share code, notes, and snippets.

View zenAudio's full-sized avatar

zenAud.io GmbH zenAudio

View GitHub Profile
# This module gives low-level access to the Objective-C runtime,
# allowing classes to be created.
# Copyright 2014, Martin Percossi.
#
type
ObjectId* = object # represents id in Objective-C.
ClassRepr* = object # represents Class in Objective-C.
Selector* = object # represents SEL in Objective-C.
MethodRepr* = object # represents Method in Objective-C.