2007-12-30 17:41:49 +01:00
|
|
|
/***************************************************************************
|
|
|
|
|
2009-08-17 12:41:51 +02:00
|
|
|
gb_reserved.h
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2009-08-17 12:41:51 +02:00
|
|
|
(c) 2000-2009 Benoît Minisini <gambas@users.sourceforge.net>
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
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
|
2009-08-17 12:41:51 +02:00
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
2007-12-30 17:41:49 +01:00
|
|
|
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.
|
|
|
|
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __GB_RESERVED_H
|
|
|
|
#define __GB_RESERVED_H
|
|
|
|
|
|
|
|
#include "gb_table.h"
|
|
|
|
|
|
|
|
#define RSF_NONE 0x0
|
|
|
|
#define RSF_OP 0x1
|
|
|
|
#define RSF_TYPE 0x2
|
|
|
|
#define RSF_ASGN 0x4
|
|
|
|
#define RSF_N_ARY 0x00
|
|
|
|
#define RSF_UNARY 0x10
|
|
|
|
#define RSF_BINARY 0x20
|
|
|
|
#define RSF_POST 0x30
|
|
|
|
#define RSF_ONLY 0x40
|
|
|
|
|
|
|
|
#define RSF_OPN 0x01
|
|
|
|
#define RSF_OP1 0x11
|
|
|
|
#define RSF_OP2 0x21
|
|
|
|
#define RSF_OPP 0x31
|
|
|
|
//#define RSF_OPI 0x61
|
|
|
|
#define RSF_OP2S 0x61
|
|
|
|
#define RSF_OP2SM 0xA1
|
|
|
|
|
2009-09-20 19:32:12 +02:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
RSF_INF = 0x0100,
|
|
|
|
RSF_ILF = 0x0200, // last pattern waits for a function name
|
|
|
|
RSF_ILD = 0x0400, // last pattern waits for an identifier
|
2010-01-28 11:55:24 +01:00
|
|
|
RSF_ILDD = 0x0800, // last pattern waits for an identifier only if the previous one waits for an identifier too
|
2009-09-20 19:32:12 +02:00
|
|
|
RSF_ILT = 0x1000, // last pattern waits for a datatype
|
2010-01-28 11:55:24 +01:00
|
|
|
RSF_ILC = 0x2000, // last pattern waits for a class
|
2009-09-20 19:32:12 +02:00
|
|
|
RSF_IMASK = 0xFF00
|
|
|
|
};
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
#define RES_is_operator(value) (COMP_res_info[value].flag & RSF_OP)
|
|
|
|
#define RES_is_type(value) (COMP_res_info[value].flag & RSF_TYPE)
|
|
|
|
#define RES_is_assignment(value) (COMP_res_info[value].flag & RSF_ASGN)
|
|
|
|
#define RES_is_only(value) (COMP_res_info[value].flag & RSF_ONLY)
|
|
|
|
#define RES_get_ident_flag(value) (COMP_res_info[value].flag & RSF_IMASK)
|
|
|
|
|
|
|
|
#define RES_priority(_res) (COMP_res_info[_res].priority)
|
|
|
|
|
|
|
|
#define RES_is_unary(value) ((COMP_res_info[value].flag & 0x30) == RSF_UNARY)
|
|
|
|
#define RES_is_binary(value) ((COMP_res_info[value].flag & 0x30) == RSF_BINARY)
|
|
|
|
#define RES_is_n_ary(value) ((COMP_res_info[value].flag & 0x30) == RSF_N_ARY)
|
|
|
|
#define RES_is_post(value) ((COMP_res_info[value].flag & 0x30) == RSF_POST)
|
|
|
|
|
|
|
|
#define RES_get_type(_res) (COMP_res_info[_res].value)
|
|
|
|
#define RES_get_assignment_operator(_res) (COMP_res_info[_res].value)
|
|
|
|
|
|
|
|
typedef
|
|
|
|
enum {
|
|
|
|
RS_NONE,
|
|
|
|
RS_BOOLEAN,
|
|
|
|
RS_BYTE,
|
|
|
|
RS_DATE,
|
|
|
|
RS_SINGLE,
|
|
|
|
RS_FLOAT,
|
|
|
|
RS_INTEGER,
|
|
|
|
RS_LONG,
|
|
|
|
RS_SHORT,
|
|
|
|
RS_STRING,
|
|
|
|
RS_VARIANT,
|
|
|
|
RS_OBJECT,
|
|
|
|
RS_POINTER,
|
|
|
|
RS_CLASS,
|
|
|
|
RS_FUNCTION,
|
|
|
|
RS_STRUCT,
|
|
|
|
RS_CONST,
|
|
|
|
RS_PRIVATE,
|
|
|
|
RS_PUBLIC,
|
|
|
|
RS_STATIC,
|
|
|
|
RS_PROPERTY,
|
|
|
|
RS_EVENT,
|
|
|
|
RS_INHERITS,
|
|
|
|
RS_IMPLEMENTS,
|
|
|
|
RS_EXPORT,
|
|
|
|
RS_AS,
|
|
|
|
RS_OF,
|
|
|
|
RS_DIM,
|
|
|
|
RS_NEW,
|
|
|
|
RS_PROCEDURE,
|
|
|
|
RS_SUB,
|
|
|
|
RS_RETURN,
|
|
|
|
RS_OPTIONAL,
|
|
|
|
RS_OUTPUT,
|
|
|
|
RS_DO,
|
|
|
|
RS_LOOP,
|
|
|
|
RS_WHILE,
|
|
|
|
RS_UNTIL,
|
|
|
|
RS_REPEAT,
|
|
|
|
RS_WEND,
|
|
|
|
RS_IF,
|
|
|
|
RS_THEN,
|
|
|
|
RS_ELSE,
|
|
|
|
RS_ENDIF,
|
|
|
|
RS_END,
|
|
|
|
RS_FOR,
|
|
|
|
RS_TO,
|
|
|
|
RS_FROM,
|
|
|
|
RS_STEP,
|
|
|
|
RS_NEXT,
|
|
|
|
RS_SELECT,
|
|
|
|
RS_CASE,
|
|
|
|
RS_EXIT,
|
|
|
|
RS_BREAK,
|
|
|
|
RS_CONTINUE,
|
|
|
|
RS_GOTO,
|
|
|
|
RS_ME,
|
|
|
|
RS_LAST,
|
|
|
|
RS_TRY,
|
|
|
|
RS_FINALLY,
|
|
|
|
RS_CATCH,
|
|
|
|
RS_WITH,
|
|
|
|
RS_TRUE,
|
|
|
|
RS_FALSE,
|
|
|
|
RS_SWAP,
|
|
|
|
RS_NULL,
|
|
|
|
RS_EXTERN,
|
|
|
|
RS_EACH,
|
|
|
|
RS_IN,
|
|
|
|
RS_DEFAULT,
|
|
|
|
RS_STOP,
|
|
|
|
RS_QUIT,
|
|
|
|
RS_RAISE,
|
|
|
|
RS_ERROR,
|
|
|
|
RS_SUPER,
|
|
|
|
RS_ENUM,
|
2009-09-27 11:28:52 +02:00
|
|
|
RS_LET,
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
RS_PRINT,
|
|
|
|
RS_INPUT,
|
|
|
|
RS_READ,
|
|
|
|
RS_WRITE,
|
|
|
|
RS_OPEN,
|
|
|
|
RS_CLOSE,
|
|
|
|
RS_SEEK,
|
|
|
|
RS_APPEND,
|
|
|
|
RS_CREATE,
|
|
|
|
RS_BINARY,
|
|
|
|
RS_LINE,
|
|
|
|
RS_FLUSH,
|
|
|
|
RS_EXEC,
|
|
|
|
RS_SHELL,
|
|
|
|
RS_WAIT,
|
|
|
|
RS_SLEEP,
|
|
|
|
RS_KILL,
|
|
|
|
RS_MOVE,
|
|
|
|
RS_COPY,
|
|
|
|
RS_INC,
|
|
|
|
RS_DEC,
|
|
|
|
RS_MKDIR,
|
|
|
|
RS_RMDIR,
|
|
|
|
RS_WATCH,
|
|
|
|
RS_LINK,
|
|
|
|
RS_LOCK,
|
|
|
|
RS_UNLOCK,
|
|
|
|
RS_LIBRARY,
|
|
|
|
RS_DEBUG,
|
|
|
|
RS_PIPE,
|
|
|
|
RS_RANDOMIZE,
|
[DEVELOPMENT ENVIRONMENT]
* BUG: Use TextEdit.RichText insted of TextEdit.Text.
* BUG: END SUB can be the end of a method. The class analyze now takes
that into account.
[HELP]
* BUG: Fixed the generated treeview.
[COMPILER]
* OPT: The NOT operator used just at the beginning of a conditional
expression is optimized. Consequently, an expression like 'IF NOT 2' is
now equivalent to 'IF 2 = 0' and not to 'IF (NOT 2) <> 0' as before. In
other words, the boolean conversion is now done before the NOT, and not
after. The following instructions are concerned: IF, WHILE, UNTIL.
* NEW: BYREF is new keyword that is a more readable synonymous of '@'.
[GB.DB.FORM]
* BUG: Correctly manage data controls inside TabStrip-like containers.
* BUG: Setting the focus on a non-initialized DataControl does not raise
an error anymore.
[GB.GTK]
* BUG: HSplitter.Layout and VSplitter.Layout now work correctly. It is a
list of children widths, hidden children having a zero width.
* BUG: Window arrangement is done before the Open event is raised, as in
gb.qt.
* BUG: Keyboard, focus and mouse events now work correctly on Window and
DrawingArea controls.
[GB.QT]
* BUG: HSplitter.Layout and VSplitter.Layout now work correctly. It is a
list of children widths, hidden children having a zero width.
* BUG: Many warning fixes.
* BUG: Now the Control.Visible property works like in gb.gtk, i.e. it
returns if the control was not explicitely hidden.
git-svn-id: svn://localhost/gambas/trunk@1060 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2008-02-06 01:25:48 +01:00
|
|
|
RS_BYREF,
|
2009-09-17 22:58:27 +02:00
|
|
|
RS_MEMORY,
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
RS_COLON,
|
|
|
|
RS_SCOLON,
|
|
|
|
RS_COMMA,
|
|
|
|
RS_3PTS,
|
|
|
|
RS_SHARP,
|
|
|
|
RS_AT,
|
|
|
|
RS_QUES,
|
|
|
|
RS_LBRC,
|
|
|
|
RS_RBRC,
|
|
|
|
RS_EQUAL,
|
|
|
|
RS_NEAR,
|
|
|
|
RS_LBRA,
|
|
|
|
RS_RBRA,
|
|
|
|
RS_PT,
|
|
|
|
RS_EXCL,
|
|
|
|
RS_PLUS,
|
|
|
|
RS_MINUS,
|
|
|
|
RS_STAR,
|
|
|
|
RS_SLASH,
|
|
|
|
RS_FLEX,
|
|
|
|
RS_AMP,
|
|
|
|
RS_GT,
|
|
|
|
RS_LT,
|
|
|
|
RS_GE,
|
|
|
|
RS_LE,
|
|
|
|
RS_NE,
|
|
|
|
RS_LSQR,
|
|
|
|
RS_RSQR,
|
|
|
|
RS_AND,
|
|
|
|
RS_OR,
|
|
|
|
RS_NOT,
|
|
|
|
RS_XOR,
|
|
|
|
RS_BSLASH,
|
|
|
|
RS_DIV,
|
|
|
|
RS_MOD,
|
|
|
|
RS_IS,
|
|
|
|
RS_LIKE,
|
2009-09-27 11:28:52 +02:00
|
|
|
RS_BEGINS,
|
|
|
|
RS_ENDS,
|
2007-12-30 17:41:49 +01:00
|
|
|
RS_FILE,
|
|
|
|
|
|
|
|
RS_PLUS_EQ,
|
|
|
|
RS_MINUS_EQ,
|
|
|
|
RS_STAR_EQ,
|
|
|
|
RS_SLASH_EQ,
|
|
|
|
RS_DIV_EQ,
|
|
|
|
RS_AMP_EQ,
|
|
|
|
RS_FILE_EQ,
|
|
|
|
}
|
|
|
|
RESERVED_ID;
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
OP_NONE ,
|
2008-11-11 18:22:38 +01:00
|
|
|
OP_COLON ,
|
2007-12-30 17:41:49 +01:00
|
|
|
OP_EQUAL ,
|
|
|
|
OP_NEAR ,
|
|
|
|
OP_LBRA ,
|
|
|
|
OP_RBRA ,
|
|
|
|
OP_PT ,
|
|
|
|
OP_EXCL ,
|
|
|
|
OP_COMMA ,
|
|
|
|
OP_3PTS ,
|
|
|
|
OP_PLUS ,
|
|
|
|
OP_MINUS ,
|
|
|
|
OP_STAR ,
|
|
|
|
OP_SLASH ,
|
|
|
|
OP_FLEX ,
|
|
|
|
OP_AMP ,
|
|
|
|
OP_GT ,
|
|
|
|
OP_LT ,
|
|
|
|
OP_GE ,
|
|
|
|
OP_LE ,
|
|
|
|
OP_NE ,
|
|
|
|
OP_LSQR ,
|
|
|
|
OP_RSQR ,
|
|
|
|
OP_AND ,
|
|
|
|
OP_OR ,
|
|
|
|
OP_NOT ,
|
|
|
|
OP_XOR ,
|
|
|
|
OP_DIV ,
|
|
|
|
OP_MOD ,
|
|
|
|
OP_IS ,
|
|
|
|
OP_LIKE ,
|
|
|
|
OP_FILE
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef
|
|
|
|
struct {
|
|
|
|
const char *name;
|
|
|
|
short flag;
|
|
|
|
short value;
|
|
|
|
short priority;
|
|
|
|
short code;
|
2009-09-27 11:28:52 +02:00
|
|
|
short subcode;
|
2007-12-30 17:41:49 +01:00
|
|
|
void (*func)();
|
|
|
|
}
|
|
|
|
PACKED
|
|
|
|
COMP_INFO;
|
|
|
|
|
|
|
|
typedef
|
|
|
|
struct {
|
|
|
|
const char *name;
|
|
|
|
ushort opcode;
|
|
|
|
ushort optype;
|
|
|
|
short min_param;
|
|
|
|
short max_param;
|
|
|
|
}
|
|
|
|
PACKED
|
|
|
|
SUBR_INFO;
|
|
|
|
|
|
|
|
/*
|
|
|
|
typedef
|
|
|
|
struct {
|
|
|
|
short index;
|
|
|
|
char *name;
|
|
|
|
}
|
|
|
|
PACKED
|
|
|
|
CONST_INFO;
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __RESERVED_C
|
|
|
|
|
|
|
|
EXTERN COMP_INFO COMP_res_info[];
|
|
|
|
EXTERN SUBR_INFO COMP_subr_info[];
|
|
|
|
|
|
|
|
EXTERN TABLE *COMP_res_table;
|
|
|
|
EXTERN TABLE *COMP_subr_table;
|
|
|
|
|
2008-01-19 02:36:38 +01:00
|
|
|
EXTERN int SUBR_VarPtr;
|
2008-03-17 15:54:17 +01:00
|
|
|
EXTERN int SUBR_Mid;
|
|
|
|
EXTERN int SUBR_MidS;
|
2008-01-19 02:36:38 +01:00
|
|
|
|
2007-12-30 17:41:49 +01:00
|
|
|
#endif
|
|
|
|
|
2008-01-19 02:36:38 +01:00
|
|
|
void RESERVED_init(void);
|
|
|
|
void RESERVED_exit(void);
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2008-01-19 02:36:38 +01:00
|
|
|
int RESERVED_find_word(const char *word, int len);
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2008-01-19 02:36:38 +01:00
|
|
|
SUBR_INFO *SUBR_get(const char *subr_name);
|
|
|
|
SUBR_INFO *SUBR_get_from_opcode(ushort opcode, ushort optype);
|
2008-03-17 15:54:17 +01:00
|
|
|
//int SUBR_get_index(const char *subr_name);
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
#endif
|