Kaydet (Commit) 962e14e9 authored tarafından Eike Rathke's avatar Eike Rathke

introduce SC_OPCODE_TABLE_REF / ocTableRef

Change-Id: I74cd756fe41b75791f7c2665373e33aec04b1eee
üst b6898755
...@@ -42,16 +42,17 @@ ...@@ -42,16 +42,17 @@
#define SC_OPCODE_SPACES 16 #define SC_OPCODE_SPACES 16
#define SC_OPCODE_MAT_REF 17 #define SC_OPCODE_MAT_REF 17
#define SC_OPCODE_DB_AREA 18 /* additional access operators */ #define SC_OPCODE_DB_AREA 18 /* additional access operators */
#define SC_OPCODE_MACRO 19 #define SC_OPCODE_TABLE_REF 19
#define SC_OPCODE_COL_ROW_NAME 20 #define SC_OPCODE_MACRO 20
#define SC_OPCODE_COL_ROW_NAME_AUTO 21 #define SC_OPCODE_COL_ROW_NAME 21
#define SC_OPCODE_PERCENT_SIGN 22 /* operator _follows_ value */ #define SC_OPCODE_COL_ROW_NAME_AUTO 22
#define SC_OPCODE_ARRAY_OPEN 23 #define SC_OPCODE_PERCENT_SIGN 23 /* operator _follows_ value */
#define SC_OPCODE_ARRAY_CLOSE 24 #define SC_OPCODE_ARRAY_OPEN 24
#define SC_OPCODE_ARRAY_ROW_SEP 25 #define SC_OPCODE_ARRAY_CLOSE 25
#define SC_OPCODE_ARRAY_COL_SEP 26 /* some convs use sep != col_sep */ #define SC_OPCODE_ARRAY_ROW_SEP 26
#define SC_OPCODE_STOP_DIV 27 #define SC_OPCODE_ARRAY_COL_SEP 27 /* some convs use sep != col_sep */
#define SC_OPCODE_SKIP 28 /* used to skip raw tokens during string compilation */ #define SC_OPCODE_STOP_DIV 28
#define SC_OPCODE_SKIP 29 /* used to skip raw tokens during string compilation */
/*** error constants #... ***/ /*** error constants #... ***/
#define SC_OPCODE_START_ERRORS 30 #define SC_OPCODE_START_ERRORS 30
......
...@@ -54,6 +54,7 @@ enum OpCode : sal_uInt16 ...@@ -54,6 +54,7 @@ enum OpCode : sal_uInt16
ocSkip = SC_OPCODE_SKIP, ocSkip = SC_OPCODE_SKIP,
// Access commands // Access commands
ocDBArea = SC_OPCODE_DB_AREA, ocDBArea = SC_OPCODE_DB_AREA,
ocTableRef = SC_OPCODE_TABLE_REF,
ocMacro = SC_OPCODE_MACRO, ocMacro = SC_OPCODE_MACRO,
ocColRowName = SC_OPCODE_COL_ROW_NAME, ocColRowName = SC_OPCODE_COL_ROW_NAME,
ocColRowNameAuto = SC_OPCODE_COL_ROW_NAME_AUTO, ocColRowNameAuto = SC_OPCODE_COL_ROW_NAME_AUTO,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment