mirror of
https://github.com/gnustep/libs-steptalk.git
synced 2025-02-23 11:31:01 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/steptalk/trunk@17444 72102866-910b-0410-8b05-ffd578937521
45 lines
897 B
Text
45 lines
897 B
Text
/** StepTalk.stenv
|
|
* StepTalk scripting description
|
|
*
|
|
* Copyright (c) 2000 Stefan Urbanek
|
|
*
|
|
* This file is part of the StepTalk project.
|
|
*
|
|
*
|
|
*/
|
|
|
|
{
|
|
Name = "StepTalk";
|
|
|
|
Frameworks = (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;
|
|
};
|
|
}
|
|
}
|