From 21b0cfec8f414af816d198044d2dbf97dbebfb47 Mon Sep 17 00:00:00 2001 From: Sunil Shetye Date: Wed, 20 Jun 2018 15:58:03 +0530 Subject: start working on scicos_getvalue --- sci2jslex.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'sci2jslex.py') diff --git a/sci2jslex.py b/sci2jslex.py index 17651d0a..44427247 100755 --- a/sci2jslex.py +++ b/sci2jslex.py @@ -39,16 +39,7 @@ syntaxtokens = { 'part': 'PART', 'resume': 'RESUME', 'return': 'RETURN', - 'scicos': 'SCICOS', - 'scicos_block': 'SCICOS_BLOCK', - 'scicos_context': 'SCICOS_CONTEXT', - 'scicos_debug': 'SCICOS_DEBUG', - 'scicos_diagram': 'SCICOS_DIAGRAM', 'scicos_getvalue': 'SCICOS_GETVALUE', - 'scicos_graphics': 'SCICOS_GRAPHICS', - 'scicos_link': 'SCICOS_LINK', - 'scicos_model': 'SCICOS_MODEL', - 'scicos_params': 'SCICOS_PARAMS', 'select': 'SELECT', 'then': 'THEN', 'where': 'WHERE', @@ -83,6 +74,14 @@ functioncalls = { 'ones', 'or', 'sci2exp', + 'scicos', + 'scicos_block', + 'scicos_debug' + 'scicos_diagram', + 'scicos_graphics', + 'scicos_link', + 'scicos_model', + 'scicos_params', 'set_io', 'size', 'standard_define', @@ -93,6 +92,7 @@ functioncalls = { objects = { 'arg1', + 'scicos_context', } tokens = [ -- cgit