libs-steptalk/Frameworks/StepTalk/Environments/StepTalk.stenv
Stefan Urbanek 5c5c430b4a Changed from lib to framework
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/steptalk/trunk@17436 72102866-910b-0410-8b05-ffd578937521
2003-08-06 17:21:45 +00:00

45 lines
894 B
Text

/** StepTalk.stenv
* StepTalk scripting description
*
* Copyright (c) 2000 Stefan Urbanek
*
* This file is part of the StepTalk project.
*
*
*/
{
Name = "StepTalk";
Modules = (StepTalk);
Classes =
{
STBlock =
{
Super = NSObject;
AllowMethods =
(
"value",
"valueWith:",
"valueWith:with:",
"valueWith:with:with:",
"valueWith:with:with:with:",
"argumentCount",
"handler:",
"whileTrue:",
"whileFalse:"
);
};
STScriptObject =
{
Super = NSObject;
Restriction = AllowAll;
};
STUndefinedObject =
{
Super = nil;
Restriction = AllowAll;
};
}
}