diff options
author | Sunil Shetye | 2018-07-10 17:32:28 +0530 |
---|---|---|
committer | Sunil Shetye | 2018-07-10 17:34:50 +0530 |
commit | 8fedaa7a9bf85fe97abe42fe08c1c9b11b3d331f (patch) | |
tree | 16b5171e73e928d85e1ca6ab3a4b6f2a1600b07e /sci2jslex.py | |
parent | 3d43838f4a957e6d2143a348da73a12ae77dfc78 (diff) | |
download | sci2js-8fedaa7a9bf85fe97abe42fe08c1c9b11b3d331f.tar.gz sci2js-8fedaa7a9bf85fe97abe42fe08c1c9b11b3d331f.tar.bz2 sci2js-8fedaa7a9bf85fe97abe42fe08c1c9b11b3d331f.zip |
update some return types
Diffstat (limited to 'sci2jslex.py')
-rwxr-xr-x | sci2jslex.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sci2jslex.py b/sci2jslex.py index 33ba6052..08ac358d 100755 --- a/sci2jslex.py +++ b/sci2jslex.py @@ -86,7 +86,6 @@ DOUBLE_FUNCTION_NAMES = { 'and', 'atan', 'block_parameter_error', - 'check_io', 'cleandata', 'compile_expr', 'compiler_expression', @@ -160,7 +159,6 @@ DOUBLE_FUNCTION_NAMES = { 'real', 'save', 'scf', - 'sci2exp', 'scicos', 'scicos_block', 'scicos_debug', @@ -213,6 +211,7 @@ DOUBLE_FUNCTION_NAMES = { LIST_TYPE = 'list' LIST_FUNCTION_NAMES = { + 'check_io', } MATRIX_TYPE = 'matrix' @@ -253,6 +252,7 @@ SCICOS_BLOCKS = { STRING_TYPE = 'string' STRING_FUNCTION_NAMES = { + 'sci2exp', } VECTOR_TYPE = 'vector' |