Add backtick as string separator

This commit is contained in:
2022-03-11 14:55:19 +01:00
parent 3b73ca626a
commit 1c5e04458e

View File

@@ -96,7 +96,7 @@ class Reader extends PhpObject
'RIGHT','SIGN','SIN','SINH','SQRT','TABLE','TABLENAME','TAN','TANH','TITLE','TO','TRAILING','TRUNC','TYPE','UPPER',
'USING','VALUE','WITH', 'TRANSPORTING', 'TYPE-POOLS'),
'wBwCore'=>array('SOURCE_PACKAGE', 'RESULT_PACKAGE', '<SOURCE_FIELDS>', '<RESULT_FIELDS>'),
'cOperator'=>array('(', ')', ',', '.', ':', '-', '~', '[', ']', '&lt;', '&gt;', '|', '{', '}', '@'),
'cOperator'=>array('(', ')', ',', '.', ':', '-', '~', '[', ']', '&lt;', '&gt;', '|', '{', '}', '@', '#'),
'cCalculation'=>array('+', '-', '*', '/', '=', '(', ')'),
'cComment'=>array('*'),
'cPartComment'=>array('&quot;'),
@@ -104,7 +104,8 @@ class Reader extends PhpObject
'quote' => array('&quot;', '&quot;'),
'quot2' => array('&#039;', '&#039;'),
'pipe' => array('|', '|'),
'curly' => array('{', '}')
'curly' => array('{', '}'),
'tick' => array('`', '`')
),
'iNumber'=>array('1', '2', '3', '4', '5', '6', '7', '8', '9', '0'),
'wExpand'=>array('loop'=>'endloop', 'if'=>'endif'),