From 1c5e04458e825b0be9f2bcc36a737df90c69e4ff Mon Sep 17 00:00:00 2001 From: Franzz Date: Fri, 11 Mar 2022 14:55:19 +0100 Subject: [PATCH] Add backtick as string separator --- inc/reader.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/inc/reader.php b/inc/reader.php index 97a8637..8fb9444 100644 --- a/inc/reader.php +++ b/inc/reader.php @@ -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', '', ''), - 'cOperator'=>array('(', ')', ',', '.', ':', '-', '~', '[', ']', '<', '>', '|', '{', '}', '@'), + 'cOperator'=>array('(', ')', ',', '.', ':', '-', '~', '[', ']', '<', '>', '|', '{', '}', '@', '#'), 'cCalculation'=>array('+', '-', '*', '/', '=', '(', ')'), 'cComment'=>array('*'), 'cPartComment'=>array('"'), @@ -104,7 +104,8 @@ class Reader extends PhpObject 'quote' => array('"', '"'), 'quot2' => array(''', '''), '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'),