Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge "three" branch to master #83

Merged
merged 28 commits into from
Apr 15, 2017
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
76ed3e7
Fix missing rootViewController in iOS demo app.
timburks Apr 24, 2016
29d5c13
Expand major classes and categories into separate files.
timburks Apr 25, 2016
f01d0bb
Expand bridging classes into separate files.
timburks Apr 25, 2016
9806965
Restructure some includes.
timburks Apr 25, 2016
4d37d30
Modernization
ksjogo Jul 13, 2016
6423eb0
arm64 checks
ksjogo Jul 14, 2016
a5f8592
add B return type
ksjogo Jul 14, 2016
0d8c3b3
fix types B l q
ksjogo Jul 14, 2016
d42b605
ignore system operator on iOS for the moment
ksjogo Jul 15, 2016
a85b01b
fix init warning
ksjogo Jul 15, 2016
b054146
xcode proj setup
ksjogo Jul 15, 2016
ddfca81
newer ffi
ksjogo Jul 15, 2016
68e1e3c
added shieds for quasiquote nesting
ksjogo Jul 15, 2016
7b1bd28
fallback for synthesized _ivars
ksjogo Jul 15, 2016
455cd81
move inheriitedByClass to later stage
ksjogo Jul 18, 2016
69fbcff
disabe nuhandlers and add simple cblock test in nuapp
ksjogo Jul 18, 2016
52e5c71
fix os x
ksjogo Jul 21, 2016
30946e5
set ios deployment target to 7.0
ksjogo Jul 24, 2016
2b56f23
updated libffi
ksjogo Mar 30, 2017
9c149fb
Fixed all compile time warnigns as of Xcode 8.3.1
Apr 13, 2017
8a487f6
Used more modern NSNumber literals to make code less verbose.
Apr 13, 2017
7a2dc39
Used -UTF8String to make the code less verbose.
Apr 13, 2017
56d2f79
Replaced all occurrences of (id)[NSNull null] with Nu__null for brevi…
Apr 13, 2017
c32f271
Merge pull request #82 from ksjogo/three
timburks Apr 13, 2017
be0d367
Set Nu__null = [NSNull null]
timburks Apr 13, 2017
ce824cd
Fix compiler warnings about array type and a self-assigned variable.
timburks Apr 13, 2017
caa19df
remove ios readline include
ksjogo Apr 14, 2017
5e54206
Merge pull request #84 from ksjogo/three
timburks Apr 14, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions objc/NuOperators.m
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
#import "NuBridge.h"
#import "NuBridgedFunction.h"
#import "NuClass.h"
#if !TARGET_OS_IPHONE
#include <readline/readline.h>
#endif
#import "NSString+Nu.h"

#if TARGET_OS_IPHONE
Expand Down
2 changes: 2 additions & 0 deletions objc/NuParser.m
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
#import "NSDictionary+Nu.h"
#import "NuException.h"
#import "NuCell.h"
#if !TARGET_OS_IPHONE
#include <readline/readline.h>
#endif

#define PARSE_NORMAL 0
#define PARSE_COMMENT 1
Expand Down