Skip to content

Commit 45e75bd

Browse files
committed
working
1 parent 4c8f74b commit 45e75bd

File tree

6 files changed

+391
-54
lines changed

6 files changed

+391
-54
lines changed

JawaScriptExecutive-iOS/JawaExecutor.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,24 @@
99
#ifndef JawaExecutor_h
1010
#define JawaExecutor_h
1111

12+
extern NSMutableDictionary* builtinFunctions;
13+
1214
@class JawaObjectRef;
1315

16+
1417
@interface JawaExecutor : NSObject
18+
{
19+
JawaObjectRef* NULL_CONSTANT;
20+
}
21+
1522
@property (weak) NSMutableDictionary* env;
1623
@property NSMutableDictionary* global;
1724
@property NSMutableArray* activations;
1825
@property NSMutableArray* currentActivation;
1926
@property NSMutableDictionary* currentIterationScope;
2027
@property BOOL isFromCallExpression;
2128

29+
2230
-(id)init;
2331
-(JawaObjectRef*)evaluate:(NSDictionary*)tree;
2432
-(void)execute:(NSDictionary*)ast;

0 commit comments

Comments
 (0)