Skip to content

Commit

Permalink
Restructure some includes.
Browse files Browse the repository at this point in the history
  • Loading branch information
timburks committed Apr 25, 2016
1 parent f01d0bb commit 9806965
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 10 deletions.
1 change: 1 addition & 0 deletions objc/NSNumber+Nu.m
Expand Up @@ -9,6 +9,7 @@
#import "NSNumber+Nu.h"
#import "NuInternals.h"
#import "NuBlock.h"
#import "NuCell.h"

@implementation NSNumber(Nu)

Expand Down
2 changes: 2 additions & 0 deletions objc/NSObject+Nu.m
Expand Up @@ -11,6 +11,8 @@
#import "NSDictionary+Nu.h"
#import "NuEnumerable.h"
#import "NuMethod.h"
#import "NuClass.h"
#import "NuCell.h"

@protocol NuCanSetAction
- (void) setAction:(SEL) action;
Expand Down
1 change: 1 addition & 0 deletions objc/NSString+Nu.m
Expand Up @@ -10,6 +10,7 @@
#import "NuInternals.h"
#import "NSDictionary+Nu.h"
#import "NSData+Nu.h"
#import "NuCell.h"

@interface NuStringEnumerator : NSEnumerator
{
Expand Down
1 change: 1 addition & 0 deletions objc/Nu.m
Expand Up @@ -71,6 +71,7 @@
#import "NuException.h"
#import "NuBridge.h"
#import "NuBridgedFunction.h"
#import "NuClass.h"

#ifdef LINUX
id loadNuLibraryFile(NSString *nuFileName, id parser, id context, id symbolTable);
Expand Down
1 change: 1 addition & 0 deletions objc/NuBlock.m
Expand Up @@ -11,6 +11,7 @@
#import "NuSuper.h"
#import "NSDictionary+Nu.h"
#import "NuCell.h"
#import "NuClass.h"

@interface NuBlock ()
{
Expand Down
11 changes: 1 addition & 10 deletions objc/NuBridge.h
Expand Up @@ -23,13 +23,4 @@
#endif


ffi_type *ffi_type_for_objc_type(const char *typeString);


#import "NuMethod.h"

#pragma mark -
#pragma mark Interacting with the Objective-C Runtime

#import "NuClass.h"

ffi_type *ffi_type_for_objc_type(const char *typeString);
3 changes: 3 additions & 0 deletions objc/NuBridge.m
Expand Up @@ -43,6 +43,9 @@
#import "NuHandler.h"
#import "NuReference.h"
#import "NuPointer.h"
#import "NuClass.h"
#import "NSMethodSignature+Nu.h"
#import "NSDictionary+Nu.h"

/*
* types:
Expand Down
1 change: 1 addition & 0 deletions objc/NuEnumerable.m
Expand Up @@ -9,6 +9,7 @@
#import "NuEnumerable.h"
#import "NuInternals.h"
#import "NuCell.h"
#import "NuBlock.h"

#pragma mark - NuEnumerable.m

Expand Down
1 change: 1 addition & 0 deletions objc/NuMarkupOperator.m
Expand Up @@ -9,6 +9,7 @@
#import "Nu.h"
#import "NuInternals.h"
#import "NuMarkupOperator.h"
#import "NuCell.h"

@implementation NuMarkupOperator

Expand Down
1 change: 1 addition & 0 deletions objc/NuOperators.m
Expand Up @@ -16,6 +16,7 @@
#import "NSArray+Nu.h"
#import "NuBridge.h"
#import "NuBridgedFunction.h"
#import "NuClass.h"

#if TARGET_OS_IPHONE
#import <UIKit/UIKit.h>
Expand Down
1 change: 1 addition & 0 deletions objc/NuSymbol.m
Expand Up @@ -12,6 +12,7 @@
#import "NuBridge.h"
#import "NuBridgedFunction.h"
#import "NuBridgedConstant.h"
#import "NuClass.h"

#pragma mark - NuSymbol.m

Expand Down

0 comments on commit 9806965

Please sign in to comment.