2002-05-13 22:13:06 +00:00
|
|
|
/** StepTalk.stenv
|
|
|
|
* StepTalk scripting description
|
|
|
|
*
|
|
|
|
* Copyright (c) 2000 Stefan Urbanek
|
|
|
|
*
|
|
|
|
* This file is part of the StepTalk project.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
{
|
|
|
|
Name = "StepTalk";
|
|
|
|
|
2003-08-06 21:09:41 +00:00
|
|
|
Frameworks = (StepTalk);
|
2003-05-10 16:57:28 +00:00
|
|
|
|
2002-05-13 22:13:06 +00:00
|
|
|
Classes =
|
|
|
|
{
|
|
|
|
STBlock =
|
|
|
|
{
|
|
|
|
Super = NSObject;
|
|
|
|
AllowMethods =
|
|
|
|
(
|
|
|
|
"value",
|
|
|
|
"valueWith:",
|
|
|
|
"valueWith:with:",
|
|
|
|
"valueWith:with:with:",
|
|
|
|
"valueWith:with:with:with:",
|
|
|
|
"argumentCount",
|
2002-06-06 17:14:05 +00:00
|
|
|
"handler:",
|
|
|
|
"whileTrue:",
|
|
|
|
"whileFalse:"
|
2002-05-13 22:13:06 +00:00
|
|
|
);
|
|
|
|
};
|
|
|
|
STScriptObject =
|
|
|
|
{
|
|
|
|
Super = NSObject;
|
|
|
|
Restriction = AllowAll;
|
|
|
|
};
|
|
|
|
STUndefinedObject =
|
|
|
|
{
|
|
|
|
Super = nil;
|
|
|
|
Restriction = AllowAll;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|