This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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. |