You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* FSGlobalScope.h Copyright (c) 2009 Philippe Mougin. */
/* This software is open source. See the license. */
#import <Cocoa/Cocoa.h>
@class FSGlobalScope;
extern FSGlobalScope *FSSharedGlobalScope;
@interface FSGlobalScope : NSObject
{
NSMutableDictionary *globals;
}
- (id) objectForSymbol:(NSString *)symbol found:(BOOL *)found; // found may be passed as NULL
- (void) setObject:(id)object forSymbol:(NSString *)symbol; // object must ne non-nil (current implementation does not support storing nil in the global scope)