import_m : IMPORT_FUNCTION identifier OPEN_BRACKET INT_VALUE CLOSE_BRACKET { $$= new_import_function_definition($2,atoi($4),yylineno); } | IMPORT_LEGACY_FUNCTION identifier { $$= new_import_legacy_definition($2,yylineno); } ; import_package: IMPORT_PACKAGE identifier { A4GL_lexer_import_package($2); $$= new_import_package($2,yylineno); } ; module_import: IMPORT_DATATYPE identifier { add_ex_dtype($2); $$= new_import_datatype($2,yylineno); } ;