libs-steptalk/Languages/Smalltalk/Externs.m
Wolfgang Lux b5aeea6a29 Implement correct semantics for return statements inside a Smalltalk
block, which is to return from the method containing the block's
definition.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/steptalk/trunk@36419 72102866-910b-0410-8b05-ffd578937521
2013-03-24 17:02:20 +00:00

17 lines
546 B
Objective-C

/**
Externs.m
Misc. variables
Copyright (c) 2002 Free Software Foundation
This file is part of the StepTalk project.
*/
#import <Foundation/NSString.h>
NSString *STCompilerSyntaxException = @"STCompilerSyntaxException";
NSString *STCompilerGenericException = @"STCompilerGenericException";
NSString *STCompilerInconsistencyException =@"STCompilerInconsistencyException";
NSString *STInterpreterGenericException = @"STInterpreterGenericException";
NSString *STInterpreterReturnException = @"STInterpreterReturnException";