gambas-source-code/main/lib/eval/CSystem.c
Benoît Minisini d38d3910d4 [INTERPRETER]
* BUG: Enhance and fix support for template array classes.

[COMPILER]
* BUG: Enhance and fix support for template array classes.

[GB.EVAL]
* NEW: Support for template array classes.


git-svn-id: svn://localhost/gambas/trunk@1531 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2008-08-31 23:45:47 +00:00

81 lines
1.9 KiB
C

/***************************************************************************
CSystem.c
(c) 2000-2007 Benoit Minisini <gambas@freesurf.fr>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 1, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
***************************************************************************/
#define __CSYSTEM_C
#include "gambas.h"
#include "gb_common.h"
#include "gb_reserved.h"
#include "CSystem.h"
static GB_ARRAY _keywords = 0;
BEGIN_PROPERTY(CSYSTEM_keywords)
COMP_INFO *info;
SUBR_INFO *subr;
char *str;
if (!_keywords)
{
GB.Array.New(&_keywords, GB_T_STRING, 0);
for (info = &COMP_res_info[1]; info->name; info++)
{
if (*info->name >= 'A' && *info->name <= 'Z')
{
GB.NewString(&str, info->name, 0);
*((char **)GB.Array.Add(_keywords)) = str;
}
}
for (subr = &COMP_subr_info[0]; subr->name; subr++)
{
GB.NewString(&str, subr->name, 0);
*((char **)GB.Array.Add(_keywords)) = str;
}
GB.Ref(_keywords);
}
GB.ReturnObject(_keywords);
END_PROPERTY
BEGIN_METHOD_VOID(CSYSTEM_exit)
GB.Unref((void **)&_keywords);
END_METHOD
GB_DESC CSystemDesc[] =
{
GB_DECLARE("System", 0),
GB_STATIC_METHOD("_exit", NULL, CSYSTEM_exit, NULL),
GB_STATIC_PROPERTY_READ("Keywords", "String[]", CSYSTEM_keywords),
GB_END_DECLARE
};