/*************************************************************************** gb_reserved_keyword.h (c) 2000-2010 BenoƮt Minisini 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 2, 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. ***************************************************************************/ #ifndef __GB_RESERVED_KEYWORD_H #define __GB_RESERVED_KEYWORD_H COMP_INFO COMP_res_info[] = { { "" }, { "Boolean", RSF_TYPE, T_BOOLEAN, 8 }, { "Byte", RSF_TYPE, T_BYTE, 8 }, { "Date", RSF_TYPE, T_DATE, 8 }, { "Single", RSF_TYPE, T_SINGLE, 8 }, { "Float", RSF_TYPE, T_FLOAT, 8 }, { "Integer", RSF_TYPE, T_INTEGER, 8 }, { "Long", RSF_TYPE, T_LONG, 8 }, { "Short", RSF_TYPE, T_SHORT, 8 }, { "String", RSF_TYPE, T_STRING, 8 }, { "Variant", RSF_TYPE, T_VARIANT, 8 }, { "Object", RSF_TYPE, T_OBJECT, 8 }, { "Pointer", RSF_TYPE, T_POINTER, 8 }, { "Class", RSF_IDENT, 0, 2 }, { "Function", RSF_IDENT, 0, 4 }, { "Struct", RSF_PREV, 0, 3 }, { "Const", 0, 0, 5 }, { "Private", RSF_IDENT|RSF_PUB, }, { "Public", RSF_IDENT|RSF_PUB, }, { "Static", RSF_PUB }, { "Property", RSF_IDENT }, { "Event", RSF_IDENT|RSF_EVENT }, { "Inherits", RSF_CLASS|RSF_AS }, { "Implements" }, { "Export" }, { "As", RSF_AS }, { "Of" }, { "Dim", RSF_IDENT, }, { "New", RSF_AS , 0, 1 }, { "Procedure", RSF_IDENT, 0, 4 }, { "Sub", RSF_IDENT, 0, 4 }, { "Return" }, { "Optional" }, { "Output" }, { "Do" }, { "Loop" }, { "While" }, { "Until" }, { "Repeat" }, { "Wend" }, { "If" }, { "Then" }, { "Else" }, { "Endif" }, { "End" }, { "For" }, { "To" }, { "From" }, { "Step" }, { "Next" }, { "Select" }, { "Case" }, { "Exit" }, { "Break" }, { "Continue" }, { "Goto" }, { "Me", 0, 0, 1 }, { "Last", 0, 0, 1 }, { "Try" }, { "Finally" }, { "Catch" }, { "With" }, { "True" }, { "False" }, { "Swap" }, { "Null" }, { "Extern", RSF_IDENT, 0, 5 }, { "Each" }, { "In" }, { "Default" }, { "Stop" }, { "Quit" }, { "Raise", RSF_IDENT|RSF_EVENT }, { "Error" }, { "Super", 0, 0, 1 }, { "Enum", 0, 0, 6 }, { "Let" }, { "Print" }, { "Input" }, { "Read", RSF_PREV, 0, 7 }, { "Write" }, { "Open" }, { "Close" }, { "Seek" }, { "Append" }, { "Create" }, { "Binary" }, { "Line" }, { "Flush" }, { "Exec" }, { "Shell" }, { "Wait" }, { "Sleep" }, { "Kill" }, { "Move" }, { "Copy" }, { "Inc" }, { "Dec" }, { "Mkdir" }, { "Rmdir" }, { "Watch" }, { "Link" }, { "Lock" }, { "Unlock" }, { "Library" }, { "Debug" }, { "Pipe" }, { "Randomize" }, { "ByRef" }, { "Memory" }, { ":", RSF_NONE, OP_COLON, 0, }, // Use for the immediate collection syntax { ";" }, { "," }, { "..." }, { "#" }, { "@" }, { "?" }, { "{" }, { "}" }, { "=", RSF_OP2S, OP_EQUAL, 0, 4, C_EQ }, { "==", RSF_OP2S, OP_NEAR, 0, 4, C_NEAR }, { "(", RSF_OPP, OP_LBRA, 0, 12 }, { ")", }, { ".", RSF_OP2|RSF_POINT, OP_PT, 0, 20 }, { "!", RSF_OP2|RSF_POINT, OP_EXCL, 0, 20 }, { "+", RSF_OP2, OP_PLUS, 0, 5, C_ADD }, { "-", RSF_OP2, OP_MINUS, 0, 5, C_SUB }, { "*", RSF_OP2, OP_STAR, 0, 6, C_MUL }, { "/", RSF_OP2, OP_SLASH, 0, 6, C_DIV }, { "^", RSF_OP2S, OP_FLEX, 0, 7, C_POW }, { "&", RSF_OPN, OP_AMP, 0, 9, C_CAT }, { ">", RSF_OP2S, OP_GT, 0, 4, C_GT }, { "<", RSF_OP2S, OP_LT, 0, 4, C_LT }, { ">=", RSF_OP2S, OP_GE, 0, 4, C_GE }, { "<=", RSF_OP2S, OP_LE, 0, 4, C_LE }, { "<>", RSF_OP2S, OP_NE, 0, 4, C_NE }, { "[", RSF_OPP, OP_LSQR, 0, 12 }, { "]", RSF_NONE, OP_RSQR }, // Use for the immediate array syntax { "And", RSF_OP2SM, OP_AND, 0, 2, C_AND }, { "Or", RSF_OP2SM, OP_OR, 0, 2, C_OR }, { "Not", RSF_OP1, OP_NOT, 0, 10, C_NOT }, { "Xor", RSF_OP2SM, OP_XOR, 0, 2, C_XOR }, { "\\", RSF_OP2S, OP_DIV, 0, 6, C_QUO }, { "Div", RSF_OP2S, OP_DIV, 0, 6, C_QUO }, { "Mod", RSF_OP2S, OP_MOD, 0, 6, C_REM }, { "Is", RSF_OP2|RSF_AS, OP_IS, 0, 11, C_IS }, { "Like", RSF_OP2S, OP_LIKE, 0, 4, C_LIKE, 0 }, { "Begins", RSF_OP2S, OP_LIKE, 0, 4, C_LIKE, 1 }, { "Ends", RSF_OP2S, OP_LIKE, 0, 4, C_LIKE, 2 }, { "&/", RSF_OPN, OP_FILE, 0, 8, C_FILE }, { "+=", RSF_ASGN, RS_PLUS }, { "-=", RSF_ASGN, RS_MINUS }, { "*=", RSF_ASGN, RS_STAR }, { "/=", RSF_ASGN, RS_SLASH }, { "\\=", RSF_ASGN, RS_BSLASH }, { "&=", RSF_ASGN, RS_AMP }, { "&/=", RSF_ASGN, RS_FILE }, { "^=", RSF_ASGN, RS_FLEX }, { NULL } }; SUBR_INFO COMP_subr_info[] = { { "Left$", 0, 0, 1, 2 }, { "Left", 0, 0, 1, 2 }, { "Mid$", 1, 0, 2, 3 }, { "Mid", 1, 0, 2, 3 }, { "Right$", 2, 0, 1, 2 }, { "Right", 2, 0, 1, 2 }, { "Len", 3, 0, 1 }, { "Space$", 4, 0, 1 }, { "Space", 4, 0, 1 }, { "String$", 5, 0, 2 }, { "String", 5, 0, 2 }, { "Trim$", 6, 0, 1 }, { "Trim", 6, 0, 1 }, { "LTrim$", 6, 1, 1 }, { "LTrim", 6, 1, 1 }, { "RTrim$", 6, 2, 1 }, { "RTrim", 6, 2, 1 }, { "Upper$", 7, 0, 1 }, { "Upper", 7, 0, 1 }, { "UCase$", 7, 0, 1 }, { "UCase", 7, 0, 1 }, { "Lower$", 8, 0, 1 }, { "Lower", 8, 0, 1 }, { "LCase$", 8, 0, 1 }, { "LCase", 8, 0, 1 }, { "Chr$", 9, 0, 1 }, { "Chr", 9, 0, 1 }, { "Asc", 10, 0, 1, 2 }, { "InStr", 11, 0, 2, 4 }, { "RInStr", 12, 0, 2, 4 }, /* CODE_RINSTR */ { "Subst$", 13, 0, 1, 63 }, { "Subst", 13, 0, 1, 63 }, { "Replace$", 14, 0, 3, 4 }, { "Replace", 14, 0, 3, 4 }, { "Split", 15, 0, 1, 5 }, { "Scan", 16, 0, 2 }, { "Comp", 17, 0, 2, 3 }, { "Conv", 18, 0, 3 }, { "Conv$", 18, 0, 3 }, { "SConv", 19, 0, 1 }, { "SConv$", 19, 0, 1 }, { "DConv", 19, 1, 1 }, { "DConv$", 19, 1, 1 }, { "Abs", 20, 0, 1 }, /* CODE_ABS */ { "Int", 21, 0, 1 }, { "Fix", 22, 0, 1 }, { "Sgn", 23, 0, 1 }, { "Frac", 24, 1, 1 }, { "Log", 24, 2, 1 }, { "Exp", 24, 3, 1 }, { "Sqr", 24, 4, 1 }, { "Sin", 24, 5, 1 }, { "Cos", 24, 6, 1 }, { "Tan", 24, 7, 1 }, { "Atn", 24, 8, 1 }, { "ATan", 24, 8, 1 }, { "Asn", 24, 9, 1 }, { "ASin", 24, 9, 1 }, { "Acs", 24, 10, 1 }, { "ACos", 24, 10, 1 }, { "Deg", 24, 11, 1 }, { "Rad", 24, 12, 1 }, { "Log10", 24, 13, 1 }, { "Sinh", 24, 14, 1 }, { "Cosh", 24, 15, 1 }, { "Tanh", 24, 16, 1 }, { "Asnh", 24, 17, 1 }, { "ASinh", 24, 17, 1 }, { "Acsh", 24, 18, 1 }, { "ACosh", 24, 18, 1 }, { "Atnh", 24, 19, 1 }, { "ATanh", 24, 19, 1 }, { "Exp2", 24, 20, 1 }, { "Exp10", 24, 21, 1 }, { "Log2", 24, 22, 1 }, { "Cbr", 24, 23, 1 }, { "Expm", 24, 24, 1 }, { "Logp", 24, 25, 1 }, { "Pi", 25, 0, 0, 1 }, { "Round", 26, 0, 1, 2 }, #ifndef __EVAL_RESERVED_C { ".Randomize", 27, 0, 0, 1 }, #endif { "Rnd", 28, 0, 0, 2 }, { "Min", 29, 0, 2, }, { "Max", 30, 0, 2, }, /* CODE_MAX */ { "If", 31, 0, 3, }, { "IIf", 31, 0, 3, }, { "Choose", 32, 0, 1, 63 }, { ".Array", 33, 0, 1, 63 }, /* Needed for Eval("[...]") */ { "ATan2", 34, 1, 2 }, { "Atn2", 34, 1, 2 }, { "Ang", 34, 2, 2 }, { "Hyp", 34, 3, 2 }, { "Mag", 34, 3, 2 }, { "IsAscii", 35, 1, 1 }, { "IsLetter", 35, 2, 1 }, { "IsLCase", 35, 3, 1 }, { "IsLower", 35, 3, 1 }, { "IsUCase", 35, 4, 1 }, { "IsUpper", 35, 4, 1 }, { "IsDigit", 35, 5, 1 }, { "IsHexa", 35, 6, 1 }, { "IsSpace", 35, 7, 1 }, { "IsBlank", 35, 8, 1 }, { "IsPunct", 35, 9, 1 }, /*{ "Ascii?", 35, 1, 1 }, { "Letter?", 35, 2, 1 }, { "LCase?", 35, 3, 1 }, { "Lower?", 35, 3, 1 }, { "UCase?", 35, 4, 1 }, { "Upper?", 35, 4, 1 }, { "Digit?", 35, 5, 1 }, { "Hexa?", 35, 6, 1 }, { "Space?", 35, 7, 1 }, { "Blank?", 35, 8, 1 }, { "Punct?", 35, 9, 1 },*/ { "BClr", 36, 1, 2 }, { "BSet", 36, 2, 2 }, { "BTst", 36, 3, 2 }, { "BChg", 36, 4, 2 }, { "Shl", 36, 5, 2 }, { "Asl", 36, 5, 2 }, { "Shr", 36, 6, 2 }, { "Asr", 36, 6, 2 }, { "Rol", 36, 7, 2 }, { "Ror", 36, 8, 2 }, { "Lsl", 36, 9, 2 }, { "Lsr", 36, 10, 2 }, { "IsBoolean", 37, 1, 1 }, { "IsByte", 37, 2, 1 }, { "IsShort", 37, 3, 1 }, { "IsInteger", 37, 4, 1 }, { "IsLong", 37, 5, 1 }, { "IsSingle", 37, 6, 1 }, { "IsFloat", 37, 7, 1 }, { "IsDate", 37, 8, 1 }, { "IsString", 37, 9, 1 }, { "IsPointer", 37, 11, 1 }, { "IsVariant", 37, 12, 1 }, { "IsNull", 37, 15, 1 }, { "IsObject", 37, 16, 1 }, { "IsNumber", 37, 17, 1 }, /*{ "Boolean?", 37, 1, 1 }, { "Byte?", 37, 2, 1 }, { "Short?", 37, 3, 1 }, { "Integer?", 37, 4, 1 }, { "Long?", 37, 5, 1 }, { "Single?", 37, 6, 1 }, { "Float?", 37, 7, 1 }, { "Date?", 37, 8, 1 }, { "String?", 37, 9, 1 }, { "Null?", 37, 15, 1 }, { "Object?", 37, 16, 1 }, { "Number?", 37, 17, 1 },*/ { "TypeOf", 38, 0, 1 }, { "SizeOf", 38, 1, 1 }, { "CBool", 39, 1, 1 }, /* CODE_CONV */ { "CByte", 39, 2, 1 }, { "CShort", 39, 3, 1 }, { "CInt", 39, 4, 1 }, { "CInteger", 39, 4, 1 }, { "CLng", 39, 5, 1 }, { "CLong", 39, 5, 1 }, { "CSng", 39, 6, 1 }, { "CSingle", 39, 6, 1 }, { "CFlt", 39, 7, 1 }, { "CFloat", 39, 7, 1 }, { "CDate", 39, 8, 1 }, { "CStr", 39, 9, 1 }, { "CString", 39, 9, 1 }, { "CVar", 39, 12, 1 }, { "CVariant", 39, 12, 1 }, { "Bin$", 40, 0, 1, 2 }, { "Bin", 40, 0, 1, 2 }, { "Hex$", 41, 0, 1, 2 }, { "Hex", 41, 0, 1, 2 }, { "Val", 42, 0, 1 }, { "Str$", 43, 0, 1 }, { "Str", 43, 0, 1 }, { "Format$", 44, 0, 1, 2 }, { "Format", 44, 0, 1, 2 }, { "Timer", 45, 0, 0 }, { "Now", 46, 0, 0 }, { "Year", 47, 1, 1 }, { "Month", 47, 2, 1 }, { "Day", 47, 3, 1 }, { "Hour", 47, 4, 1 }, { "Minute", 47, 5, 1 }, { "Second", 47, 6, 1 }, { "WeekDay", 47, 7, 1 }, { "Week", 48, 0, 0, 3 }, { "Date", 49, 0, 0, 6 }, { "Time", 50, 0, 0, 3 }, { "DateAdd", 51, 0, 3 }, { "DateDiff", 51, 1, 3 }, { "Eval", 52, 0, 1, 2 }, #ifndef __EVAL_RESERVED_C { ".Error", 53, 0, 0, 2 }, { ".Debug", 54, 0, 0 }, { ".Wait", 55, 0, 0, 1 }, { ".Open", 56, 0, 2 }, { ".OpenMemory", 56, 1, 2 }, { ".Close", 57, 0, 1 }, { ".Input", 58, 0, 0, 1 }, { ".LineInput", 59, 0, 1 }, { ".Print", 60, 0, 1, 63 }, { ".Read", 61, 0, 2, }, { ".ReadBytes", 61, 1, 2, }, { ".Write", 62, 0, 3, }, { ".WriteBytes", 62, 1, 3, }, { ".Flush", 63, 0, 1 }, { ".Lock", 64, 0, 1 }, { ".Unlock", 64, 1, 1 }, { ".InputFrom", 65, 0, 1 }, { ".OutputTo", 65, 1, 1 }, { ".ErrorTo", 65, 2, 1 }, #endif { "Eof", 66, 0, 0, 1 }, { "Lof", 67, 0, 0, 1 }, { "Seek", 68, 0, 1, 3 }, #ifndef __EVAL_RESERVED_C { ".Kill", 69, 0, 1 }, { ".Mkdir", 70, 0, 1 }, { ".Rmdir", 71, 0, 1 }, { ".Move", 72, 0, 2 }, { ".Copy", 73, 0, 2 }, { ".Link", 74, 0, 2 }, #endif { "Exist", 75, 0, 1 }, { "Access", 76, 0, 1, 2 }, { "Stat", 77, 0, 1, 2 }, { "Dfree", 78, 0, 1 }, { "Temp", 79, 0, 0, 1 }, { "Temp$", 79, 0, 0, 1 }, { "IsDir", 80, 0, 1 }, { "Dir?", 80, 0, 1 }, { "Dir", 81, 0, 1, 3 }, { "RDir", 82, 0, 1, 4 }, #ifndef __EVAL_RESERVED_C { ".Exec", 83, 0, 4 }, { ".Shell", 83, 1, 4 }, #endif { "Alloc", 84, 0, 1, 2 }, { "Free", 85, 0, 1 }, { "Realloc", 86, 0, 2, 3 }, { "StrPtr", 87, 0, 1, 2 }, #ifndef __EVAL_RESERVED_C { ".Sleep", 88, 0, 1 }, #endif { "VarPtr", 89, 0, 1 }, { ".Collection", 90, 0, 1, 63 }, { "Tr", 91, 0, 1 }, { "Tr$", 91, 0, 1 }, { "Quote", 92, 0, 1 }, { "Quote$", 92, 0, 1 }, { "Shell", 92, 1, 1 }, { "Shell$", 92, 1, 1 }, { "Html", 92, 2, 1 }, { "Html$", 92, 2, 1 }, { "Unquote", 93, 0, 1 }, { "Unquote$", 93, 0, 1 }, { "Assign", 94, 0, 1, 2 }, /* CODE_ASSIGN */ /* { "_EventOff", 94, 0, 0 }, { "_EventOn", 95, 0, 0 }, */ { NULL } }; #endif