blockly 12.3.0 → 12.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1636) hide show
  1. package/.prettierignore +30 -0
  2. package/.prettierrc.js +15 -0
  3. package/api-extractor.json +390 -0
  4. package/appengine/.gcloudignore +20 -0
  5. package/appengine/README.txt +42 -0
  6. package/appengine/add_timestamps.py +69 -0
  7. package/appengine/app.yaml +106 -0
  8. package/appengine/apple-touch-icon.png +0 -0
  9. package/appengine/blockly_compressed.js +11 -0
  10. package/appengine/expiration.py +52 -0
  11. package/appengine/favicon.ico +0 -0
  12. package/appengine/index.yaml +11 -0
  13. package/appengine/main.py +39 -0
  14. package/appengine/redirect.html +107 -0
  15. package/appengine/requirements.txt +1 -0
  16. package/appengine/robots.txt +2 -0
  17. package/appengine/storage.js +190 -0
  18. package/appengine/storage.py +125 -0
  19. package/blocks/blocks.ts +44 -0
  20. package/blocks/lists.ts +1065 -0
  21. package/blocks/logic.ts +712 -0
  22. package/blocks/loops.ts +408 -0
  23. package/blocks/math.ts +591 -0
  24. package/blocks/procedures.ts +1366 -0
  25. package/blocks/text.ts +1001 -0
  26. package/blocks/variables.ts +181 -0
  27. package/blocks/variables_dynamic.ts +192 -0
  28. package/core/any_aliases.ts +8 -0
  29. package/core/block.ts +2511 -0
  30. package/core/block_animations.ts +233 -0
  31. package/core/block_flyout_inflater.ts +283 -0
  32. package/core/block_svg.ts +1873 -0
  33. package/core/blockly.ts +644 -0
  34. package/core/blockly_options.ts +71 -0
  35. package/core/blocks.ts +18 -0
  36. package/core/browser_events.ts +256 -0
  37. package/core/bubbles/bubble.ts +732 -0
  38. package/core/bubbles/mini_workspace_bubble.ts +292 -0
  39. package/core/bubbles/text_bubble.ts +112 -0
  40. package/core/bubbles/textinput_bubble.ts +296 -0
  41. package/core/bubbles.ts +12 -0
  42. package/core/bump_objects.ts +188 -0
  43. package/core/button_flyout_inflater.ts +76 -0
  44. package/core/clipboard/block_paster.ts +154 -0
  45. package/core/clipboard/registry.ts +31 -0
  46. package/core/clipboard/workspace_comment_paster.ts +95 -0
  47. package/core/clipboard.ts +197 -0
  48. package/core/comments/collapse_comment_bar_button.ts +102 -0
  49. package/core/comments/comment_bar_button.ts +105 -0
  50. package/core/comments/comment_editor.ts +220 -0
  51. package/core/comments/comment_view.ts +773 -0
  52. package/core/comments/delete_comment_bar_button.ts +106 -0
  53. package/core/comments/rendered_workspace_comment.ts +361 -0
  54. package/core/comments/workspace_comment.ts +247 -0
  55. package/core/comments.ts +13 -0
  56. package/core/common.ts +347 -0
  57. package/core/component_manager.ts +247 -0
  58. package/core/config.ts +65 -0
  59. package/core/connection.ts +807 -0
  60. package/core/connection_checker.ts +348 -0
  61. package/core/connection_db.ts +297 -0
  62. package/core/connection_type.ts +21 -0
  63. package/core/constants.ts +23 -0
  64. package/core/contextmenu.ts +295 -0
  65. package/core/contextmenu_items.ts +684 -0
  66. package/core/contextmenu_registry.ts +278 -0
  67. package/core/css.ts +518 -0
  68. package/core/delete_area.ts +77 -0
  69. package/core/dialog.ts +167 -0
  70. package/core/drag_target.ts +97 -0
  71. package/core/dragging/block_drag_strategy.ts +523 -0
  72. package/core/dragging/bubble_drag_strategy.ts +49 -0
  73. package/core/dragging/comment_drag_strategy.ts +92 -0
  74. package/core/dragging/dragger.ts +174 -0
  75. package/core/dragging.ts +12 -0
  76. package/core/dropdowndiv.ts +792 -0
  77. package/core/events/events.ts +109 -0
  78. package/core/events/events_abstract.ts +129 -0
  79. package/core/events/events_block_base.ts +87 -0
  80. package/core/events/events_block_change.ts +259 -0
  81. package/core/events/events_block_create.ts +185 -0
  82. package/core/events/events_block_delete.ts +182 -0
  83. package/core/events/events_block_drag.ts +116 -0
  84. package/core/events/events_block_field_intermediate_change.ts +166 -0
  85. package/core/events/events_block_move.ts +306 -0
  86. package/core/events/events_bubble_open.ts +121 -0
  87. package/core/events/events_click.ts +110 -0
  88. package/core/events/events_comment_base.ts +126 -0
  89. package/core/events/events_comment_change.ts +156 -0
  90. package/core/events/events_comment_collapse.ts +103 -0
  91. package/core/events/events_comment_create.ts +114 -0
  92. package/core/events/events_comment_delete.ts +113 -0
  93. package/core/events/events_comment_drag.ts +99 -0
  94. package/core/events/events_comment_move.ts +206 -0
  95. package/core/events/events_comment_resize.ts +169 -0
  96. package/core/events/events_selected.ts +97 -0
  97. package/core/events/events_theme_change.ts +84 -0
  98. package/core/events/events_toolbox_item_select.ts +96 -0
  99. package/core/events/events_trashcan_open.ts +87 -0
  100. package/core/events/events_ui_base.ts +47 -0
  101. package/core/events/events_var_base.ts +88 -0
  102. package/core/events/events_var_create.ts +131 -0
  103. package/core/events/events_var_delete.ts +124 -0
  104. package/core/events/events_var_rename.ts +133 -0
  105. package/core/events/events_var_type_change.ts +122 -0
  106. package/core/events/events_viewport.ts +149 -0
  107. package/core/events/predicates.ts +166 -0
  108. package/core/events/type.ts +87 -0
  109. package/core/events/utils.ts +455 -0
  110. package/core/events/workspace_events.ts +46 -0
  111. package/core/extensions.ts +497 -0
  112. package/core/field.ts +1445 -0
  113. package/core/field_checkbox.ts +266 -0
  114. package/core/field_dropdown.ts +907 -0
  115. package/core/field_image.ts +307 -0
  116. package/core/field_input.ts +826 -0
  117. package/core/field_label.ts +150 -0
  118. package/core/field_label_serializable.ts +73 -0
  119. package/core/field_number.ts +381 -0
  120. package/core/field_registry.ts +115 -0
  121. package/core/field_textinput.ts +125 -0
  122. package/core/field_variable.ts +654 -0
  123. package/core/flyout_base.ts +1013 -0
  124. package/core/flyout_button.ts +447 -0
  125. package/core/flyout_horizontal.ts +375 -0
  126. package/core/flyout_item.ts +33 -0
  127. package/core/flyout_metrics_manager.ts +90 -0
  128. package/core/flyout_navigator.ts +24 -0
  129. package/core/flyout_separator.ts +94 -0
  130. package/core/flyout_vertical.ts +354 -0
  131. package/core/focus_manager.ts +675 -0
  132. package/core/generator.ts +611 -0
  133. package/core/gesture.ts +1190 -0
  134. package/core/grid.ts +267 -0
  135. package/core/icons/comment_icon.ts +429 -0
  136. package/core/icons/exceptions.ts +23 -0
  137. package/core/icons/icon.ts +204 -0
  138. package/core/icons/icon_types.ts +32 -0
  139. package/core/icons/mutator_icon.ts +360 -0
  140. package/core/icons/registry.ts +33 -0
  141. package/core/icons/warning_icon.ts +226 -0
  142. package/core/icons.ts +24 -0
  143. package/core/inject.ts +332 -0
  144. package/core/inputs/align.ts +14 -0
  145. package/core/inputs/dummy_input.ts +26 -0
  146. package/core/inputs/end_row_input.ts +31 -0
  147. package/core/inputs/input.ts +317 -0
  148. package/core/inputs/input_types.ts +27 -0
  149. package/core/inputs/statement_input.ts +34 -0
  150. package/core/inputs/value_input.ts +30 -0
  151. package/core/inputs.ts +23 -0
  152. package/core/insertion_marker_previewer.ts +268 -0
  153. package/core/interfaces/i_autohideable.ts +27 -0
  154. package/core/interfaces/i_bounded_element.ts +31 -0
  155. package/core/interfaces/i_bubble.ts +64 -0
  156. package/core/interfaces/i_collapsible_toolbox_item.ts +33 -0
  157. package/core/interfaces/i_comment_icon.ts +47 -0
  158. package/core/interfaces/i_component.ts +19 -0
  159. package/core/interfaces/i_connection_checker.ts +101 -0
  160. package/core/interfaces/i_connection_previewer.ts +50 -0
  161. package/core/interfaces/i_contextmenu.ts +21 -0
  162. package/core/interfaces/i_copyable.ts +39 -0
  163. package/core/interfaces/i_deletable.ts +35 -0
  164. package/core/interfaces/i_delete_area.ts +28 -0
  165. package/core/interfaces/i_drag_target.ts +67 -0
  166. package/core/interfaces/i_draggable.ts +73 -0
  167. package/core/interfaces/i_dragger.ts +35 -0
  168. package/core/interfaces/i_flyout.ts +190 -0
  169. package/core/interfaces/i_flyout_inflater.ts +51 -0
  170. package/core/interfaces/i_focusable_node.ts +120 -0
  171. package/core/interfaces/i_focusable_tree.ts +144 -0
  172. package/core/interfaces/i_has_bubble.ts +37 -0
  173. package/core/interfaces/i_icon.ts +116 -0
  174. package/core/interfaces/i_keyboard_accessible.ts +22 -0
  175. package/core/interfaces/i_legacy_procedure_blocks.ts +51 -0
  176. package/core/interfaces/i_metrics_manager.ts +150 -0
  177. package/core/interfaces/i_movable.ts +19 -0
  178. package/core/interfaces/i_navigation_policy.ts +69 -0
  179. package/core/interfaces/i_observable.ts +28 -0
  180. package/core/interfaces/i_parameter_model.ts +51 -0
  181. package/core/interfaces/i_paster.ts +25 -0
  182. package/core/interfaces/i_positionable.ts +33 -0
  183. package/core/interfaces/i_procedure_block.ts +29 -0
  184. package/core/interfaces/i_procedure_map.ts +18 -0
  185. package/core/interfaces/i_procedure_model.ts +71 -0
  186. package/core/interfaces/i_registrable.ts +12 -0
  187. package/core/interfaces/i_rendered_element.ts +19 -0
  188. package/core/interfaces/i_selectable.ts +41 -0
  189. package/core/interfaces/i_selectable_toolbox_item.ts +63 -0
  190. package/core/interfaces/i_serializable.ts +32 -0
  191. package/core/interfaces/i_serializer.ts +51 -0
  192. package/core/interfaces/i_styleable.ts +26 -0
  193. package/core/interfaces/i_toolbox.ts +121 -0
  194. package/core/interfaces/i_toolbox_item.ts +83 -0
  195. package/core/interfaces/i_variable_backed_parameter_model.ts +23 -0
  196. package/core/interfaces/i_variable_map.ts +65 -0
  197. package/core/interfaces/i_variable_model.ts +57 -0
  198. package/core/internal_constants.ts +47 -0
  199. package/core/keyboard_nav/block_comment_navigation_policy.ts +76 -0
  200. package/core/keyboard_nav/block_navigation_policy.ts +213 -0
  201. package/core/keyboard_nav/comment_bar_button_navigation_policy.ts +88 -0
  202. package/core/keyboard_nav/comment_editor_navigation_policy.ts +54 -0
  203. package/core/keyboard_nav/connection_navigation_policy.ts +155 -0
  204. package/core/keyboard_nav/field_navigation_policy.ts +85 -0
  205. package/core/keyboard_nav/flyout_button_navigation_policy.ts +76 -0
  206. package/core/keyboard_nav/flyout_navigation_policy.ts +111 -0
  207. package/core/keyboard_nav/flyout_separator_navigation_policy.ts +53 -0
  208. package/core/keyboard_nav/icon_navigation_policy.ts +93 -0
  209. package/core/keyboard_nav/line_cursor.ts +414 -0
  210. package/core/keyboard_nav/marker.ts +86 -0
  211. package/core/keyboard_nav/workspace_comment_navigation_policy.ts +77 -0
  212. package/core/keyboard_nav/workspace_navigation_policy.ts +77 -0
  213. package/core/keyboard_navigation_controller.ts +63 -0
  214. package/core/label_flyout_inflater.ts +75 -0
  215. package/core/layer_manager.ts +229 -0
  216. package/core/layers.ts +17 -0
  217. package/core/main.ts +31 -0
  218. package/core/marker_manager.ts +116 -0
  219. package/core/menu.ts +486 -0
  220. package/core/menu_separator.ts +38 -0
  221. package/core/menuitem.ts +289 -0
  222. package/core/metrics_manager.ts +486 -0
  223. package/core/msg.ts +27 -0
  224. package/core/names.ts +275 -0
  225. package/core/navigator.ts +123 -0
  226. package/core/observable_procedure_map.ts +66 -0
  227. package/core/options.ts +377 -0
  228. package/core/positionable_helpers.ts +186 -0
  229. package/core/procedures.ts +622 -0
  230. package/core/registry.ts +400 -0
  231. package/core/render_management.ts +193 -0
  232. package/core/rendered_connection.ts +690 -0
  233. package/core/renderers/common/block_rendering.ts +122 -0
  234. package/core/renderers/common/constants.ts +1226 -0
  235. package/core/renderers/common/drawer.ts +511 -0
  236. package/core/renderers/common/i_path_object.ts +109 -0
  237. package/core/renderers/common/info.ts +768 -0
  238. package/core/renderers/common/path_object.ts +260 -0
  239. package/core/renderers/common/renderer.ts +236 -0
  240. package/core/renderers/geras/constants.ts +42 -0
  241. package/core/renderers/geras/drawer.ts +166 -0
  242. package/core/renderers/geras/geras.ts +31 -0
  243. package/core/renderers/geras/highlight_constants.ts +342 -0
  244. package/core/renderers/geras/highlighter.ts +312 -0
  245. package/core/renderers/geras/info.ts +476 -0
  246. package/core/renderers/geras/measurables/inline_input.ts +36 -0
  247. package/core/renderers/geras/measurables/statement_input.ts +35 -0
  248. package/core/renderers/geras/path_object.ts +121 -0
  249. package/core/renderers/geras/renderer.ts +127 -0
  250. package/core/renderers/measurables/base.ts +40 -0
  251. package/core/renderers/measurables/bottom_row.ts +103 -0
  252. package/core/renderers/measurables/connection.ts +41 -0
  253. package/core/renderers/measurables/external_value_input.ts +51 -0
  254. package/core/renderers/measurables/field.ts +48 -0
  255. package/core/renderers/measurables/hat.ts +32 -0
  256. package/core/renderers/measurables/icon.ts +40 -0
  257. package/core/renderers/measurables/in_row_spacer.ts +36 -0
  258. package/core/renderers/measurables/inline_input.ts +61 -0
  259. package/core/renderers/measurables/input_connection.ts +56 -0
  260. package/core/renderers/measurables/input_row.ts +62 -0
  261. package/core/renderers/measurables/jagged_edge.ts +35 -0
  262. package/core/renderers/measurables/next_connection.ts +41 -0
  263. package/core/renderers/measurables/output_connection.ts +42 -0
  264. package/core/renderers/measurables/previous_connection.ts +41 -0
  265. package/core/renderers/measurables/round_corner.ts +41 -0
  266. package/core/renderers/measurables/row.ts +190 -0
  267. package/core/renderers/measurables/spacer_row.ts +43 -0
  268. package/core/renderers/measurables/square_corner.ts +39 -0
  269. package/core/renderers/measurables/statement_input.ts +47 -0
  270. package/core/renderers/measurables/top_row.ts +108 -0
  271. package/core/renderers/measurables/types.ts +362 -0
  272. package/core/renderers/thrasos/info.ts +327 -0
  273. package/core/renderers/thrasos/renderer.ts +39 -0
  274. package/core/renderers/thrasos/thrasos.ts +14 -0
  275. package/core/renderers/zelos/constants.ts +913 -0
  276. package/core/renderers/zelos/drawer.ts +272 -0
  277. package/core/renderers/zelos/info.ts +651 -0
  278. package/core/renderers/zelos/measurables/bottom_row.ts +44 -0
  279. package/core/renderers/zelos/measurables/inputs.ts +40 -0
  280. package/core/renderers/zelos/measurables/row_elements.ts +29 -0
  281. package/core/renderers/zelos/measurables/top_row.ts +50 -0
  282. package/core/renderers/zelos/path_object.ts +209 -0
  283. package/core/renderers/zelos/renderer.ts +91 -0
  284. package/core/renderers/zelos/zelos.ts +31 -0
  285. package/core/scrollbar.ts +898 -0
  286. package/core/scrollbar_pair.ts +349 -0
  287. package/core/separator_flyout_inflater.ts +83 -0
  288. package/core/serialization/blocks.ts +834 -0
  289. package/core/serialization/exceptions.ts +112 -0
  290. package/core/serialization/priorities.ts +25 -0
  291. package/core/serialization/procedures.ts +158 -0
  292. package/core/serialization/registry.ts +30 -0
  293. package/core/serialization/variables.ts +69 -0
  294. package/core/serialization/workspace_comments.ts +143 -0
  295. package/core/serialization/workspaces.ts +94 -0
  296. package/core/serialization.ts +32 -0
  297. package/core/shortcut_items.ts +405 -0
  298. package/core/shortcut_registry.ts +451 -0
  299. package/core/sprites.ts +15 -0
  300. package/core/theme/classic.ts +40 -0
  301. package/core/theme/themes.ts +12 -0
  302. package/core/theme/zelos.ts +80 -0
  303. package/core/theme.ts +232 -0
  304. package/core/theme_manager.ts +192 -0
  305. package/core/toast.ts +219 -0
  306. package/core/toolbox/category.ts +746 -0
  307. package/core/toolbox/collapsible_category.ts +287 -0
  308. package/core/toolbox/separator.ts +108 -0
  309. package/core/toolbox/toolbox.ts +1210 -0
  310. package/core/toolbox/toolbox_item.ts +181 -0
  311. package/core/tooltip.ts +466 -0
  312. package/core/touch.ts +155 -0
  313. package/core/trashcan.ts +730 -0
  314. package/core/utils/aria.ts +158 -0
  315. package/core/utils/array.ts +24 -0
  316. package/core/utils/colour.ts +265 -0
  317. package/core/utils/coordinate.ts +129 -0
  318. package/core/utils/deprecation.ts +47 -0
  319. package/core/utils/dom.ts +356 -0
  320. package/core/utils/drag.ts +74 -0
  321. package/core/utils/focusable_tree_traverser.ts +126 -0
  322. package/core/utils/idgenerator.ts +70 -0
  323. package/core/utils/keycodes.ts +154 -0
  324. package/core/utils/math.ts +50 -0
  325. package/core/utils/metrics.ts +86 -0
  326. package/core/utils/object.ts +33 -0
  327. package/core/utils/parsing.ts +286 -0
  328. package/core/utils/rect.ts +142 -0
  329. package/core/utils/size.ts +62 -0
  330. package/core/utils/string.ts +289 -0
  331. package/core/utils/style.ts +219 -0
  332. package/core/utils/svg.ts +84 -0
  333. package/core/utils/svg_math.ts +207 -0
  334. package/core/utils/svg_paths.ts +133 -0
  335. package/core/utils/toolbox.ts +417 -0
  336. package/core/utils/useragent.ts +86 -0
  337. package/core/utils/xml.ts +165 -0
  338. package/core/utils.ts +59 -0
  339. package/core/variable_map.ts +476 -0
  340. package/core/variable_model.ts +150 -0
  341. package/core/variables.ts +931 -0
  342. package/core/variables_dynamic.ts +230 -0
  343. package/core/widgetdiv.ts +349 -0
  344. package/core/workspace.ts +994 -0
  345. package/core/workspace_audio.ts +137 -0
  346. package/core/workspace_dragger.ts +81 -0
  347. package/core/workspace_svg.ts +2954 -0
  348. package/core/xml.ts +1126 -0
  349. package/core/zoom_controls.ts +495 -0
  350. package/demos/blockfactory/analytics.js +195 -0
  351. package/demos/blockfactory/app_controller.js +726 -0
  352. package/demos/blockfactory/block_definition_extractor.js +742 -0
  353. package/demos/blockfactory/block_exporter_controller.js +311 -0
  354. package/demos/blockfactory/block_exporter_tools.js +212 -0
  355. package/demos/blockfactory/block_exporter_view.js +101 -0
  356. package/demos/blockfactory/block_library_controller.js +325 -0
  357. package/demos/blockfactory/block_library_storage.js +149 -0
  358. package/demos/blockfactory/block_library_view.js +178 -0
  359. package/demos/blockfactory/block_option.js +151 -0
  360. package/demos/blockfactory/blocks.js +920 -0
  361. package/demos/blockfactory/cp.css +46 -0
  362. package/demos/blockfactory/cp.js +179 -0
  363. package/demos/blockfactory/factory.css +586 -0
  364. package/demos/blockfactory/factory.js +338 -0
  365. package/demos/blockfactory/factory_utils.js +1036 -0
  366. package/demos/blockfactory/icon.png +0 -0
  367. package/demos/blockfactory/index.html +767 -0
  368. package/demos/blockfactory/link.png +0 -0
  369. package/demos/blockfactory/standard_categories.js +384 -0
  370. package/demos/blockfactory/workspacefactory/wfactory_controller.js +1332 -0
  371. package/demos/blockfactory/workspacefactory/wfactory_generator.js +224 -0
  372. package/demos/blockfactory/workspacefactory/wfactory_init.js +541 -0
  373. package/demos/blockfactory/workspacefactory/wfactory_model.js +548 -0
  374. package/demos/blockfactory/workspacefactory/wfactory_view.js +424 -0
  375. package/demos/code/code.js +626 -0
  376. package/demos/code/icon.png +0 -0
  377. package/demos/code/icons.png +0 -0
  378. package/demos/code/index.html +359 -0
  379. package/demos/code/msg/ar.js +24 -0
  380. package/demos/code/msg/be-tarask.js +24 -0
  381. package/demos/code/msg/br.js +24 -0
  382. package/demos/code/msg/ca.js +24 -0
  383. package/demos/code/msg/cs.js +24 -0
  384. package/demos/code/msg/da.js +24 -0
  385. package/demos/code/msg/de.js +24 -0
  386. package/demos/code/msg/el.js +24 -0
  387. package/demos/code/msg/en.js +24 -0
  388. package/demos/code/msg/es.js +24 -0
  389. package/demos/code/msg/et.js +24 -0
  390. package/demos/code/msg/fa.js +24 -0
  391. package/demos/code/msg/fr.js +24 -0
  392. package/demos/code/msg/he.js +24 -0
  393. package/demos/code/msg/hr.js +24 -0
  394. package/demos/code/msg/hrx.js +24 -0
  395. package/demos/code/msg/hu.js +24 -0
  396. package/demos/code/msg/ia.js +24 -0
  397. package/demos/code/msg/is.js +24 -0
  398. package/demos/code/msg/it.js +24 -0
  399. package/demos/code/msg/ja.js +24 -0
  400. package/demos/code/msg/kab.js +24 -0
  401. package/demos/code/msg/ko.js +24 -0
  402. package/demos/code/msg/mk.js +24 -0
  403. package/demos/code/msg/ms.js +24 -0
  404. package/demos/code/msg/nb.js +24 -0
  405. package/demos/code/msg/nl.js +24 -0
  406. package/demos/code/msg/oc.js +24 -0
  407. package/demos/code/msg/pl.js +24 -0
  408. package/demos/code/msg/pms.js +24 -0
  409. package/demos/code/msg/pt-br.js +24 -0
  410. package/demos/code/msg/ro.js +24 -0
  411. package/demos/code/msg/ru.js +24 -0
  412. package/demos/code/msg/sc.js +24 -0
  413. package/demos/code/msg/sk.js +24 -0
  414. package/demos/code/msg/sr.js +24 -0
  415. package/demos/code/msg/sv.js +24 -0
  416. package/demos/code/msg/ta.js +24 -0
  417. package/demos/code/msg/th.js +24 -0
  418. package/demos/code/msg/tlh.js +24 -0
  419. package/demos/code/msg/tr.js +24 -0
  420. package/demos/code/msg/uk.js +24 -0
  421. package/demos/code/msg/vi.js +24 -0
  422. package/demos/code/msg/zh-hans.js +24 -0
  423. package/demos/code/msg/zh-hant.js +24 -0
  424. package/demos/code/style.css +184 -0
  425. package/demos/index.html +68 -0
  426. package/demos/storage/icon.png +0 -0
  427. package/demos/storage/index.html +104 -0
  428. package/eslint.config.mjs +314 -0
  429. package/generators/dart/dart_generator.ts +321 -0
  430. package/generators/dart/lists.ts +525 -0
  431. package/generators/dart/logic.ts +157 -0
  432. package/generators/dart/loops.ts +217 -0
  433. package/generators/dart/math.ts +559 -0
  434. package/generators/dart/procedures.ts +138 -0
  435. package/generators/dart/text.ts +405 -0
  436. package/generators/dart/variables.ts +32 -0
  437. package/generators/dart/variables_dynamic.ts +17 -0
  438. package/generators/dart.ts +50 -0
  439. package/generators/javascript/javascript_generator.ts +346 -0
  440. package/generators/javascript/lists.ts +465 -0
  441. package/generators/javascript/logic.ts +155 -0
  442. package/generators/javascript/loops.ts +245 -0
  443. package/generators/javascript/math.ts +450 -0
  444. package/generators/javascript/procedures.ts +142 -0
  445. package/generators/javascript/text.ts +418 -0
  446. package/generators/javascript/variables.ts +32 -0
  447. package/generators/javascript/variables_dynamic.ts +17 -0
  448. package/generators/javascript.ts +46 -0
  449. package/generators/lua/lists.ts +445 -0
  450. package/generators/lua/logic.ts +144 -0
  451. package/generators/lua/loops.ts +192 -0
  452. package/generators/lua/lua_generator.ts +225 -0
  453. package/generators/lua/math.ts +473 -0
  454. package/generators/lua/procedures.ts +144 -0
  455. package/generators/lua/text.ts +380 -0
  456. package/generators/lua/variables.ts +31 -0
  457. package/generators/lua/variables_dynamic.ts +17 -0
  458. package/generators/lua.ts +44 -0
  459. package/generators/php/lists.ts +585 -0
  460. package/generators/php/logic.ts +157 -0
  461. package/generators/php/loops.ts +218 -0
  462. package/generators/php/math.ts +408 -0
  463. package/generators/php/php_generator.ts +320 -0
  464. package/generators/php/procedures.ts +159 -0
  465. package/generators/php/text.ts +315 -0
  466. package/generators/php/variables.ts +32 -0
  467. package/generators/php/variables_dynamic.ts +17 -0
  468. package/generators/php.ts +46 -0
  469. package/generators/python/lists.ts +398 -0
  470. package/generators/python/logic.ts +152 -0
  471. package/generators/python/loops.ts +251 -0
  472. package/generators/python/math.ts +434 -0
  473. package/generators/python/procedures.ts +159 -0
  474. package/generators/python/python_generator.ts +355 -0
  475. package/generators/python/text.ts +338 -0
  476. package/generators/python/variables.ts +31 -0
  477. package/generators/python/variables_dynamic.ts +17 -0
  478. package/generators/python.ts +51 -0
  479. package/gulpfile.mjs +100 -0
  480. package/jsconfig.json +7 -0
  481. package/msg/json/README.md +33 -0
  482. package/msg/json/ab.json +222 -0
  483. package/msg/json/ace.json +7 -0
  484. package/msg/json/af.json +34 -0
  485. package/msg/json/am.json +30 -0
  486. package/msg/json/ar.json +355 -0
  487. package/msg/json/ast.json +10 -0
  488. package/msg/json/az.json +334 -0
  489. package/msg/json/ba.json +211 -0
  490. package/msg/json/bcc.json +290 -0
  491. package/msg/json/be-tarask.json +335 -0
  492. package/msg/json/be.json +326 -0
  493. package/msg/json/bg.json +347 -0
  494. package/msg/json/bn.json +189 -0
  495. package/msg/json/br.json +334 -0
  496. package/msg/json/bs.json +166 -0
  497. package/msg/json/ca.json +341 -0
  498. package/msg/json/cdo.json +6 -0
  499. package/msg/json/ce.json +328 -0
  500. package/msg/json/constants.json +12 -0
  501. package/msg/json/cs.json +344 -0
  502. package/msg/json/da.json +346 -0
  503. package/msg/json/de.json +369 -0
  504. package/msg/json/diq.json +264 -0
  505. package/msg/json/dtp.json +198 -0
  506. package/msg/json/dty.json +97 -0
  507. package/msg/json/ee.json +160 -0
  508. package/msg/json/el.json +356 -0
  509. package/msg/json/en-gb.json +199 -0
  510. package/msg/json/en.json +423 -0
  511. package/msg/json/eo.json +337 -0
  512. package/msg/json/es.json +361 -0
  513. package/msg/json/et.json +335 -0
  514. package/msg/json/eu.json +219 -0
  515. package/msg/json/fa.json +342 -0
  516. package/msg/json/fi.json +350 -0
  517. package/msg/json/fo.json +46 -0
  518. package/msg/json/fr.json +374 -0
  519. package/msg/json/frr.json +6 -0
  520. package/msg/json/gl.json +338 -0
  521. package/msg/json/gn.json +54 -0
  522. package/msg/json/gor.json +87 -0
  523. package/msg/json/ha.json +313 -0
  524. package/msg/json/hak.json +17 -0
  525. package/msg/json/he.json +355 -0
  526. package/msg/json/hi.json +318 -0
  527. package/msg/json/hr.json +337 -0
  528. package/msg/json/hrx.json +287 -0
  529. package/msg/json/hsb.json +128 -0
  530. package/msg/json/hu.json +349 -0
  531. package/msg/json/hy.json +337 -0
  532. package/msg/json/ia.json +337 -0
  533. package/msg/json/id.json +338 -0
  534. package/msg/json/ig.json +323 -0
  535. package/msg/json/inh.json +80 -0
  536. package/msg/json/is.json +331 -0
  537. package/msg/json/it.json +346 -0
  538. package/msg/json/ja.json +362 -0
  539. package/msg/json/ka.json +14 -0
  540. package/msg/json/kab.json +323 -0
  541. package/msg/json/kbd-cyrl.json +84 -0
  542. package/msg/json/km.json +29 -0
  543. package/msg/json/kn.json +333 -0
  544. package/msg/json/ko.json +377 -0
  545. package/msg/json/ksh.json +43 -0
  546. package/msg/json/ku-latn.json +41 -0
  547. package/msg/json/ky.json +71 -0
  548. package/msg/json/la.json +6 -0
  549. package/msg/json/lb.json +156 -0
  550. package/msg/json/lki.json +282 -0
  551. package/msg/json/lo.json +92 -0
  552. package/msg/json/lrc.json +123 -0
  553. package/msg/json/lt.json +321 -0
  554. package/msg/json/lv.json +324 -0
  555. package/msg/json/mg.json +58 -0
  556. package/msg/json/mk.json +178 -0
  557. package/msg/json/ml.json +35 -0
  558. package/msg/json/mnw.json +90 -0
  559. package/msg/json/ms.json +300 -0
  560. package/msg/json/my.json +57 -0
  561. package/msg/json/mzn.json +6 -0
  562. package/msg/json/nb.json +331 -0
  563. package/msg/json/ne.json +247 -0
  564. package/msg/json/nl.json +358 -0
  565. package/msg/json/oc.json +194 -0
  566. package/msg/json/olo.json +37 -0
  567. package/msg/json/pa.json +75 -0
  568. package/msg/json/pl.json +358 -0
  569. package/msg/json/pms.json +325 -0
  570. package/msg/json/ps.json +50 -0
  571. package/msg/json/pt-br.json +371 -0
  572. package/msg/json/pt.json +360 -0
  573. package/msg/json/qqq.json +430 -0
  574. package/msg/json/ro.json +333 -0
  575. package/msg/json/ru.json +363 -0
  576. package/msg/json/sc.json +283 -0
  577. package/msg/json/sco.json +11 -0
  578. package/msg/json/sd.json +158 -0
  579. package/msg/json/shn.json +109 -0
  580. package/msg/json/si.json +16 -0
  581. package/msg/json/sk.json +339 -0
  582. package/msg/json/skr-arab.json +117 -0
  583. package/msg/json/sl.json +355 -0
  584. package/msg/json/smn.json +133 -0
  585. package/msg/json/sq.json +343 -0
  586. package/msg/json/sr-latn.json +324 -0
  587. package/msg/json/sr.json +349 -0
  588. package/msg/json/sv.json +350 -0
  589. package/msg/json/sw.json +12 -0
  590. package/msg/json/synonyms.json +22 -0
  591. package/msg/json/ta.json +306 -0
  592. package/msg/json/tcy.json +316 -0
  593. package/msg/json/tdd.json +110 -0
  594. package/msg/json/te.json +101 -0
  595. package/msg/json/th.json +333 -0
  596. package/msg/json/ti.json +50 -0
  597. package/msg/json/tl.json +149 -0
  598. package/msg/json/tlh.json +179 -0
  599. package/msg/json/tr.json +370 -0
  600. package/msg/json/ug-arab.json +180 -0
  601. package/msg/json/uk.json +346 -0
  602. package/msg/json/ur.json +118 -0
  603. package/msg/json/uz.json +36 -0
  604. package/msg/json/vi.json +345 -0
  605. package/msg/json/xmf.json +99 -0
  606. package/msg/json/yo.json +316 -0
  607. package/msg/json/zgh.json +83 -0
  608. package/msg/json/zh-hans.json +374 -0
  609. package/msg/json/zh-hant.json +362 -0
  610. package/msg/messages.js +1695 -0
  611. package/package.json +37 -5
  612. package/scripts/gulpfiles/appengine_tasks.mjs +189 -0
  613. package/scripts/gulpfiles/build_tasks.mjs +753 -0
  614. package/scripts/gulpfiles/config.mjs +40 -0
  615. package/scripts/gulpfiles/docs_tasks.mjs +146 -0
  616. package/scripts/gulpfiles/git_tasks.mjs +167 -0
  617. package/scripts/gulpfiles/helper_tasks.mjs +25 -0
  618. package/scripts/gulpfiles/package_tasks.mjs +257 -0
  619. package/scripts/gulpfiles/release_tasks.mjs +174 -0
  620. package/scripts/gulpfiles/test_tasks.mjs +409 -0
  621. package/scripts/helpers.js +74 -0
  622. package/scripts/i18n/common.py +233 -0
  623. package/scripts/i18n/create_messages.py +167 -0
  624. package/scripts/i18n/dedup_json.py +72 -0
  625. package/scripts/i18n/js_to_json.py +135 -0
  626. package/scripts/i18n/tests.py +46 -0
  627. package/scripts/migration/renamings.json5 +1599 -0
  628. package/scripts/package/index.js +23 -0
  629. package/scripts/package/templates/umd-msg.template +16 -0
  630. package/scripts/package/templates/umd.template +13 -0
  631. package/scripts/themes/blockStyles_example.json +11 -0
  632. package/scripts/themes/create_blockStyles.py +184 -0
  633. package/scripts/tsick.js +86 -0
  634. package/tests/browser/.mocharc.js +7 -0
  635. package/tests/browser/test/basic_block_factory_test.mjs +44 -0
  636. package/tests/browser/test/basic_block_test.mjs +38 -0
  637. package/tests/browser/test/basic_playground_test.mjs +461 -0
  638. package/tests/browser/test/block_undo_test.mjs +50 -0
  639. package/tests/browser/test/clipboard_test.mjs +611 -0
  640. package/tests/browser/test/delete_blocks_test.mjs +217 -0
  641. package/tests/browser/test/extensive_test.mjs +191 -0
  642. package/tests/browser/test/field_edits_test.mjs +61 -0
  643. package/tests/browser/test/hooks.mjs +23 -0
  644. package/tests/browser/test/mutator_test.mjs +87 -0
  645. package/tests/browser/test/procedure_test.mjs +109 -0
  646. package/tests/browser/test/test_setup.mjs +623 -0
  647. package/tests/browser/test/toolbox_drag_test.mjs +219 -0
  648. package/tests/browser/test/workspace_comment_test.mjs +220 -0
  649. package/tests/compile/index.html +43 -0
  650. package/tests/compile/main.js +53 -0
  651. package/tests/compile/test_blocks.js +47 -0
  652. package/tests/compile/webdriver.js +81 -0
  653. package/tests/generators/functions.xml +561 -0
  654. package/tests/generators/golden/generated.dart +1604 -0
  655. package/tests/generators/golden/generated.js +1552 -0
  656. package/tests/generators/golden/generated.lua +1828 -0
  657. package/tests/generators/golden/generated.php +1611 -0
  658. package/tests/generators/golden/generated.py +1407 -0
  659. package/tests/generators/index.html +408 -0
  660. package/tests/generators/lists.xml +8675 -0
  661. package/tests/generators/logic.xml +1019 -0
  662. package/tests/generators/loops1.xml +345 -0
  663. package/tests/generators/loops2.xml +891 -0
  664. package/tests/generators/loops3.xml +735 -0
  665. package/tests/generators/math.xml +2077 -0
  666. package/tests/generators/text.xml +4651 -0
  667. package/tests/generators/unittest.js +103 -0
  668. package/tests/generators/unittest_dart.js +163 -0
  669. package/tests/generators/unittest_javascript.js +167 -0
  670. package/tests/generators/unittest_lua.js +165 -0
  671. package/tests/generators/unittest_php.js +154 -0
  672. package/tests/generators/unittest_python.js +138 -0
  673. package/tests/generators/variables.xml +68 -0
  674. package/tests/generators/webdriver.js +123 -0
  675. package/tests/media/200px.png +0 -0
  676. package/tests/media/30px.png +0 -0
  677. package/tests/media/50px.png +0 -0
  678. package/tests/media/a.png +0 -0
  679. package/tests/media/arrow.png +0 -0
  680. package/tests/media/b.png +0 -0
  681. package/tests/media/c.png +0 -0
  682. package/tests/media/d.png +0 -0
  683. package/tests/media/e.png +0 -0
  684. package/tests/media/f.png +0 -0
  685. package/tests/media/g.png +0 -0
  686. package/tests/media/h.png +0 -0
  687. package/tests/media/i.png +0 -0
  688. package/tests/media/j.png +0 -0
  689. package/tests/media/k.png +0 -0
  690. package/tests/media/l.png +0 -0
  691. package/tests/media/m.png +0 -0
  692. package/tests/migration/renamings.schema.json +59 -0
  693. package/tests/migration/validate-renamings.mjs +63 -0
  694. package/tests/mocha/.mocharc.js +6 -0
  695. package/tests/mocha/block_json_test.js +777 -0
  696. package/tests/mocha/block_test.js +2949 -0
  697. package/tests/mocha/blocks/lists_test.js +238 -0
  698. package/tests/mocha/blocks/logic_ternary_test.js +320 -0
  699. package/tests/mocha/blocks/loops_test.js +56 -0
  700. package/tests/mocha/blocks/procedures_test.js +2509 -0
  701. package/tests/mocha/blocks/variables_test.js +345 -0
  702. package/tests/mocha/clipboard_test.js +263 -0
  703. package/tests/mocha/comment_deserialization_test.js +122 -0
  704. package/tests/mocha/comment_test.js +215 -0
  705. package/tests/mocha/comment_view_test.js +188 -0
  706. package/tests/mocha/connection_checker_test.js +694 -0
  707. package/tests/mocha/connection_db_test.js +363 -0
  708. package/tests/mocha/connection_test.js +3738 -0
  709. package/tests/mocha/contextmenu_items_test.js +653 -0
  710. package/tests/mocha/contextmenu_test.js +73 -0
  711. package/tests/mocha/cursor_test.js +922 -0
  712. package/tests/mocha/dialog_test.js +168 -0
  713. package/tests/mocha/dropdowndiv_test.js +458 -0
  714. package/tests/mocha/event_block_change_test.js +126 -0
  715. package/tests/mocha/event_block_create_test.js +109 -0
  716. package/tests/mocha/event_block_delete_test.js +55 -0
  717. package/tests/mocha/event_block_drag_test.js +36 -0
  718. package/tests/mocha/event_block_field_intermediate_change_test.js +67 -0
  719. package/tests/mocha/event_block_move_test.js +39 -0
  720. package/tests/mocha/event_bubble_open_test.js +42 -0
  721. package/tests/mocha/event_click_test.js +40 -0
  722. package/tests/mocha/event_comment_change_test.js +39 -0
  723. package/tests/mocha/event_comment_collapse_test.js +34 -0
  724. package/tests/mocha/event_comment_create_test.js +38 -0
  725. package/tests/mocha/event_comment_delete_test.js +38 -0
  726. package/tests/mocha/event_comment_drag_test.js +35 -0
  727. package/tests/mocha/event_comment_move_test.js +40 -0
  728. package/tests/mocha/event_comment_resize_test.js +38 -0
  729. package/tests/mocha/event_selected_test.js +41 -0
  730. package/tests/mocha/event_test.js +1668 -0
  731. package/tests/mocha/event_theme_change_test.js +36 -0
  732. package/tests/mocha/event_toolbox_item_select_test.js +64 -0
  733. package/tests/mocha/event_trashcan_open_test.js +36 -0
  734. package/tests/mocha/event_var_create_test.js +54 -0
  735. package/tests/mocha/event_var_delete_test.js +54 -0
  736. package/tests/mocha/event_var_rename_test.js +39 -0
  737. package/tests/mocha/event_var_type_change_test.js +43 -0
  738. package/tests/mocha/event_viewport_test.js +39 -0
  739. package/tests/mocha/extensions_test.js +613 -0
  740. package/tests/mocha/field_checkbox_test.js +299 -0
  741. package/tests/mocha/field_colour_test.js +395 -0
  742. package/tests/mocha/field_dropdown_test.js +328 -0
  743. package/tests/mocha/field_image_test.js +351 -0
  744. package/tests/mocha/field_label_serializable_test.js +252 -0
  745. package/tests/mocha/field_label_test.js +226 -0
  746. package/tests/mocha/field_number_test.js +505 -0
  747. package/tests/mocha/field_registry_test.js +115 -0
  748. package/tests/mocha/field_test.js +821 -0
  749. package/tests/mocha/field_textinput_test.js +593 -0
  750. package/tests/mocha/field_variable_test.js +644 -0
  751. package/tests/mocha/flyout_test.js +650 -0
  752. package/tests/mocha/focus_manager_test.js +5979 -0
  753. package/tests/mocha/focusable_tree_traverser_test.js +602 -0
  754. package/tests/mocha/generator_test.js +233 -0
  755. package/tests/mocha/gesture_test.js +133 -0
  756. package/tests/mocha/icon_test.js +431 -0
  757. package/tests/mocha/index.html +354 -0
  758. package/tests/mocha/input_test.js +296 -0
  759. package/tests/mocha/insertion_marker_test.js +432 -0
  760. package/tests/mocha/jso_deserialization_test.js +848 -0
  761. package/tests/mocha/jso_serialization_test.js +1068 -0
  762. package/tests/mocha/json_test.js +303 -0
  763. package/tests/mocha/keyboard_navigation_controller_test.js +37 -0
  764. package/tests/mocha/layering_test.js +104 -0
  765. package/tests/mocha/menu_item_test.js +176 -0
  766. package/tests/mocha/metrics_test.js +671 -0
  767. package/tests/mocha/mutator_test.js +87 -0
  768. package/tests/mocha/names_test.js +97 -0
  769. package/tests/mocha/navigation_test.js +876 -0
  770. package/tests/mocha/old_workspace_comment_test.js +256 -0
  771. package/tests/mocha/procedure_map_test.js +52 -0
  772. package/tests/mocha/rect_test.js +1668 -0
  773. package/tests/mocha/registry_test.js +281 -0
  774. package/tests/mocha/render_management_test.js +127 -0
  775. package/tests/mocha/serializer_test.js +2100 -0
  776. package/tests/mocha/shortcut_items_test.js +563 -0
  777. package/tests/mocha/shortcut_registry_test.js +533 -0
  778. package/tests/mocha/test_helpers/block_definitions.js +204 -0
  779. package/tests/mocha/test_helpers/code_generation.js +114 -0
  780. package/tests/mocha/test_helpers/common.js +106 -0
  781. package/tests/mocha/test_helpers/events.js +290 -0
  782. package/tests/mocha/test_helpers/fields.js +310 -0
  783. package/tests/mocha/test_helpers/icon_mocks.js +130 -0
  784. package/tests/mocha/test_helpers/procedures.js +304 -0
  785. package/tests/mocha/test_helpers/serialization.js +124 -0
  786. package/tests/mocha/test_helpers/setup_teardown.js +232 -0
  787. package/tests/mocha/test_helpers/toolbox_definitions.js +269 -0
  788. package/tests/mocha/test_helpers/user_input.js +62 -0
  789. package/tests/mocha/test_helpers/variables.js +27 -0
  790. package/tests/mocha/test_helpers/warnings.js +83 -0
  791. package/tests/mocha/test_helpers/workspace.js +1659 -0
  792. package/tests/mocha/theme_test.js +307 -0
  793. package/tests/mocha/toast_test.js +129 -0
  794. package/tests/mocha/toolbox_test.js +821 -0
  795. package/tests/mocha/tooltip_test.js +276 -0
  796. package/tests/mocha/touch_test.js +109 -0
  797. package/tests/mocha/trashcan_test.js +376 -0
  798. package/tests/mocha/utils_test.js +557 -0
  799. package/tests/mocha/variable_map_test.js +470 -0
  800. package/tests/mocha/variable_model_test.js +85 -0
  801. package/tests/mocha/webdriver.js +110 -0
  802. package/tests/mocha/widget_div_test.js +427 -0
  803. package/tests/mocha/workspace_comment_test.js +197 -0
  804. package/tests/mocha/workspace_svg_test.js +922 -0
  805. package/tests/mocha/workspace_test.js +24 -0
  806. package/tests/mocha/xml_test.js +893 -0
  807. package/tests/mocha/zoom_controls_test.js +81 -0
  808. package/tests/multi_playground.html +482 -0
  809. package/tests/node/.mocharc.js +6 -0
  810. package/tests/node/run_node_test.mjs +191 -0
  811. package/tests/playground.html +1280 -0
  812. package/tests/playgrounds/advanced_playground.html +188 -0
  813. package/tests/playgrounds/iframe.html +40 -0
  814. package/tests/playgrounds/screenshot.js +123 -0
  815. package/tests/scripts/check_metadata.sh +170 -0
  816. package/tests/scripts/load.mjs +140 -0
  817. package/tests/scripts/setup_linux_env.sh +7 -0
  818. package/tests/scripts/update_metadata.sh +46 -0
  819. package/tests/themes/test_themes.js +62 -0
  820. package/tests/typescript/README.md +4 -0
  821. package/tests/typescript/src/field/different_user_input.ts +81 -0
  822. package/tests/typescript/src/generators/dart.ts +24 -0
  823. package/tests/typescript/src/generators/javascript.ts +28 -0
  824. package/tests/typescript/src/generators/lua.ts +24 -0
  825. package/tests/typescript/src/generators/php.ts +24 -0
  826. package/tests/typescript/src/generators/python.ts +24 -0
  827. package/tests/typescript/src/generators.ts +33 -0
  828. package/tests/typescript/src/msg.ts +20 -0
  829. package/tests/typescript/tsconfig.json +20 -0
  830. package/tests/xml/README.txt +11 -0
  831. package/tests/xml/blockly.xsd +178 -0
  832. package/tests/xml/invalid.xml +6 -0
  833. package/tests/xml/toolbox.xml +311 -0
  834. package/tests/xml/workspace.xml +114 -0
  835. package/tsconfig.json +37 -0
  836. package/tsdoc.json +25 -0
  837. package/typings/README.md +5 -0
  838. package/typings/templates/blockly-header.template +11 -0
  839. package/typings/templates/blockly-interfaces.template +83 -0
  840. package/typings/templates/msg.template +15 -0
  841. package/typings/tsconfig.json +23 -0
  842. package/blockly.min.js +0 -2740
  843. package/blockly.mjs +0 -163
  844. package/blockly_compressed.js +0 -1814
  845. package/blockly_compressed.js.map +0 -1
  846. package/blocks.js +0 -4
  847. package/blocks.mjs +0 -12
  848. package/blocks_compressed.js +0 -193
  849. package/blocks_compressed.js.map +0 -1
  850. package/core/any_aliases.d.ts +0 -7
  851. package/core/block.d.ts +0 -1006
  852. package/core/block_animations.d.ts +0 -34
  853. package/core/block_flyout_inflater.d.ts +0 -94
  854. package/core/block_svg.d.ts +0 -733
  855. package/core/blockly.d.ts +0 -286
  856. package/core/blockly_options.d.ts +0 -70
  857. package/core/blocks.d.ts +0 -17
  858. package/core/browser_events.d.ts +0 -82
  859. package/core/bubbles/bubble.d.ts +0 -228
  860. package/core/bubbles/mini_workspace_bubble.d.ts +0 -84
  861. package/core/bubbles/text_bubble.d.ts +0 -38
  862. package/core/bubbles/textinput_bubble.d.ts +0 -102
  863. package/core/bubbles.d.ts +0 -11
  864. package/core/bump_objects.d.ts +0 -37
  865. package/core/button_flyout_inflater.d.ts +0 -42
  866. package/core/clipboard/block_paster.d.ts +0 -34
  867. package/core/clipboard/registry.d.ts +0 -21
  868. package/core/clipboard/workspace_comment_paster.d.ts +0 -19
  869. package/core/clipboard.d.ts +0 -103
  870. package/core/comments/collapse_comment_bar_button.d.ts +0 -52
  871. package/core/comments/comment_bar_button.d.ts +0 -62
  872. package/core/comments/comment_editor.d.ts +0 -62
  873. package/core/comments/comment_view.d.ts +0 -213
  874. package/core/comments/delete_comment_bar_button.d.ts +0 -52
  875. package/core/comments/rendered_workspace_comment.d.ts +0 -121
  876. package/core/comments/workspace_comment.d.ts +0 -107
  877. package/core/comments.d.ts +0 -13
  878. package/core/common.d.ts +0 -163
  879. package/core/component_manager.d.ts +0 -112
  880. package/core/config.d.ts +0 -24
  881. package/core/connection.d.ts +0 -291
  882. package/core/connection_checker.d.ts +0 -85
  883. package/core/connection_db.d.ts +0 -100
  884. package/core/connection_type.d.ts +0 -15
  885. package/core/constants.d.ts +0 -19
  886. package/core/contextmenu.d.ts +0 -53
  887. package/core/contextmenu_items.d.ts +0 -73
  888. package/core/contextmenu_registry.d.ts +0 -173
  889. package/core/css.d.ts +0 -25
  890. package/core/delete_area.d.ts +0 -48
  891. package/core/dialog.d.ts +0 -82
  892. package/core/drag_target.d.ts +0 -75
  893. package/core/dragging/block_drag_strategy.d.ts +0 -121
  894. package/core/dragging/bubble_drag_strategy.d.ts +0 -20
  895. package/core/dragging/comment_drag_strategy.d.ts +0 -26
  896. package/core/dragging/dragger.d.ts +0 -49
  897. package/core/dragging.d.ts +0 -11
  898. package/core/dropdowndiv.d.ts +0 -208
  899. package/core/events/events.d.ts +0 -72
  900. package/core/events/events_abstract.d.ts +0 -72
  901. package/core/events/events_block_base.d.ts +0 -46
  902. package/core/events/events_block_change.d.ts +0 -100
  903. package/core/events/events_block_create.d.ts +0 -59
  904. package/core/events/events_block_delete.d.ts +0 -62
  905. package/core/events/events_block_drag.d.ts +0 -61
  906. package/core/events/events_block_field_intermediate_change.d.ts +0 -71
  907. package/core/events/events_block_move.d.ts +0 -115
  908. package/core/events/events_bubble_open.d.ts +0 -62
  909. package/core/events/events_click.d.ts +0 -64
  910. package/core/events/events_comment_base.d.ts +0 -55
  911. package/core/events/events_comment_change.d.ts +0 -64
  912. package/core/events/events_comment_collapse.d.ts +0 -40
  913. package/core/events/events_comment_create.d.ts +0 -57
  914. package/core/events/events_comment_delete.d.ts +0 -57
  915. package/core/events/events_comment_drag.d.ts +0 -51
  916. package/core/events/events_comment_move.d.ts +0 -93
  917. package/core/events/events_comment_resize.d.ts +0 -68
  918. package/core/events/events_selected.d.ts +0 -53
  919. package/core/events/events_theme_change.d.ts +0 -43
  920. package/core/events/events_toolbox_item_select.d.ts +0 -49
  921. package/core/events/events_trashcan_open.d.ts +0 -47
  922. package/core/events/events_ui_base.d.ts +0 -32
  923. package/core/events/events_var_base.d.ts +0 -46
  924. package/core/events/events_var_create.d.ts +0 -55
  925. package/core/events/events_var_delete.d.ts +0 -50
  926. package/core/events/events_var_rename.d.ts +0 -51
  927. package/core/events/events_var_type_change.d.ts +0 -55
  928. package/core/events/events_viewport.d.ts +0 -67
  929. package/core/events/predicates.d.ts +0 -87
  930. package/core/events/type.d.ts +0 -81
  931. package/core/events/utils.d.ts +0 -211
  932. package/core/events/workspace_events.d.ts +0 -23
  933. package/core/extensions.d.ts +0 -99
  934. package/core/field.d.ts +0 -724
  935. package/core/field_checkbox.d.ts +0 -156
  936. package/core/field_dropdown.d.ts +0 -295
  937. package/core/field_image.d.ts +0 -148
  938. package/core/field_input.d.ts +0 -293
  939. package/core/field_label.d.ts +0 -80
  940. package/core/field_label_serializable.d.ts +0 -50
  941. package/core/field_number.d.ts +0 -194
  942. package/core/field_registry.d.ts +0 -83
  943. package/core/field_textinput.d.ts +0 -78
  944. package/core/field_variable.d.ts +0 -261
  945. package/core/flyout_base.d.ts +0 -455
  946. package/core/flyout_button.d.ts +0 -139
  947. package/core/flyout_horizontal.d.ts +0 -87
  948. package/core/flyout_item.d.ts +0 -26
  949. package/core/flyout_metrics_manager.d.ts +0 -46
  950. package/core/flyout_navigator.d.ts +0 -11
  951. package/core/flyout_separator.d.ts +0 -64
  952. package/core/flyout_vertical.d.ts +0 -88
  953. package/core/focus_manager.d.ts +0 -266
  954. package/core/generator.d.ts +0 -279
  955. package/core/gesture.d.ts +0 -454
  956. package/core/grid.d.ts +0 -124
  957. package/core/icons/comment_icon.d.ts +0 -134
  958. package/core/icons/exceptions.d.ts +0 -17
  959. package/core/icons/icon.d.ts +0 -82
  960. package/core/icons/icon_types.d.ts +0 -25
  961. package/core/icons/mutator_icon.d.ts +0 -96
  962. package/core/icons/registry.d.ts +0 -23
  963. package/core/icons/warning_icon.d.ts +0 -77
  964. package/core/icons.d.ts +0 -14
  965. package/core/inject.d.ts +0 -16
  966. package/core/inputs/align.d.ts +0 -14
  967. package/core/inputs/dummy_input.d.ts +0 -20
  968. package/core/inputs/end_row_input.d.ts +0 -25
  969. package/core/inputs/input.d.ts +0 -147
  970. package/core/inputs/input_types.d.ts +0 -16
  971. package/core/inputs/statement_input.d.ts +0 -22
  972. package/core/inputs/value_input.d.ts +0 -20
  973. package/core/inputs.d.ts +0 -14
  974. package/core/insertion_marker_previewer.d.ts +0 -67
  975. package/core/interfaces/i_autohideable.d.ts +0 -21
  976. package/core/interfaces/i_bounded_element.d.ts +0 -27
  977. package/core/interfaces/i_bubble.d.ts +0 -55
  978. package/core/interfaces/i_collapsible_toolbox_item.d.ts +0 -28
  979. package/core/interfaces/i_comment_icon.d.ts +0 -24
  980. package/core/interfaces/i_component.d.ts +0 -17
  981. package/core/interfaces/i_connection_checker.d.ts +0 -75
  982. package/core/interfaces/i_connection_previewer.d.ts +0 -39
  983. package/core/interfaces/i_contextmenu.d.ts +0 -14
  984. package/core/interfaces/i_copyable.d.ts +0 -30
  985. package/core/interfaces/i_deletable.d.ts +0 -23
  986. package/core/interfaces/i_delete_area.d.ts +0 -25
  987. package/core/interfaces/i_drag_target.d.ts +0 -59
  988. package/core/interfaces/i_draggable.d.ts +0 -56
  989. package/core/interfaces/i_dragger.d.ts +0 -32
  990. package/core/interfaces/i_flyout.d.ts +0 -159
  991. package/core/interfaces/i_flyout_inflater.d.ts +0 -48
  992. package/core/interfaces/i_focusable_node.d.ts +0 -105
  993. package/core/interfaces/i_focusable_tree.d.ts +0 -125
  994. package/core/interfaces/i_has_bubble.d.ts +0 -27
  995. package/core/interfaces/i_icon.d.ts +0 -84
  996. package/core/interfaces/i_keyboard_accessible.d.ts +0 -19
  997. package/core/interfaces/i_legacy_procedure_blocks.d.ts +0 -34
  998. package/core/interfaces/i_metrics_manager.d.ts +0 -129
  999. package/core/interfaces/i_movable.d.ts +0 -17
  1000. package/core/interfaces/i_navigation_policy.d.ts +0 -63
  1001. package/core/interfaces/i_observable.d.ts +0 -21
  1002. package/core/interfaces/i_parameter_model.d.ts +0 -44
  1003. package/core/interfaces/i_paster.d.ts +0 -15
  1004. package/core/interfaces/i_positionable.d.ts +0 -29
  1005. package/core/interfaces/i_procedure_block.d.ts +0 -16
  1006. package/core/interfaces/i_procedure_map.d.ts +0 -16
  1007. package/core/interfaces/i_procedure_model.d.ts +0 -59
  1008. package/core/interfaces/i_registrable.d.ts +0 -11
  1009. package/core/interfaces/i_rendered_element.d.ts +0 -16
  1010. package/core/interfaces/i_selectable.d.ts +0 -26
  1011. package/core/interfaces/i_selectable_toolbox_item.d.ts +0 -51
  1012. package/core/interfaces/i_serializable.d.ts +0 -24
  1013. package/core/interfaces/i_serializer.d.ts +0 -45
  1014. package/core/interfaces/i_styleable.d.ts +0 -23
  1015. package/core/interfaces/i_toolbox.d.ts +0 -102
  1016. package/core/interfaces/i_toolbox_item.d.ts +0 -71
  1017. package/core/interfaces/i_variable_backed_parameter_model.d.ts +0 -17
  1018. package/core/interfaces/i_variable_map.d.ts +0 -48
  1019. package/core/interfaces/i_variable_model.d.ts +0 -36
  1020. package/core/internal_constants.d.ts +0 -34
  1021. package/core/keyboard_nav/block_comment_navigation_policy.d.ts +0 -56
  1022. package/core/keyboard_nav/block_navigation_policy.d.ts +0 -84
  1023. package/core/keyboard_nav/comment_bar_button_navigation_policy.d.ts +0 -56
  1024. package/core/keyboard_nav/comment_editor_navigation_policy.d.ts +0 -34
  1025. package/core/keyboard_nav/connection_navigation_policy.d.ts +0 -67
  1026. package/core/keyboard_nav/field_navigation_policy.d.ts +0 -56
  1027. package/core/keyboard_nav/flyout_button_navigation_policy.d.ts +0 -56
  1028. package/core/keyboard_nav/flyout_navigation_policy.d.ts +0 -65
  1029. package/core/keyboard_nav/flyout_separator_navigation_policy.d.ts +0 -33
  1030. package/core/keyboard_nav/icon_navigation_policy.d.ts +0 -56
  1031. package/core/keyboard_nav/line_cursor.d.ts +0 -187
  1032. package/core/keyboard_nav/marker.d.ts +0 -53
  1033. package/core/keyboard_nav/workspace_comment_navigation_policy.d.ts +0 -56
  1034. package/core/keyboard_nav/workspace_navigation_policy.d.ts +0 -56
  1035. package/core/keyboard_navigation_controller.d.ts +0 -48
  1036. package/core/label_flyout_inflater.d.ts +0 -42
  1037. package/core/layer_manager.d.ts +0 -86
  1038. package/core/layers.d.ts +0 -16
  1039. package/core/main.d.ts +0 -7
  1040. package/core/marker_manager.d.ts +0 -72
  1041. package/core/menu.d.ts +0 -170
  1042. package/core/menu_separator.d.ts +0 -25
  1043. package/core/menuitem.d.ts +0 -139
  1044. package/core/metrics_manager.d.ts +0 -221
  1045. package/core/msg.d.ts +0 -24
  1046. package/core/names.d.ts +0 -139
  1047. package/core/navigator.d.ts +0 -65
  1048. package/core/observable_procedure_map.d.ts +0 -34
  1049. package/core/options.d.ts +0 -148
  1050. package/core/positionable_helpers.d.ts +0 -89
  1051. package/core/procedures.d.ts +0 -108
  1052. package/core/registry.d.ts +0 -158
  1053. package/core/render_management.d.ts +0 -34
  1054. package/core/rendered_connection.d.ts +0 -263
  1055. package/core/renderers/common/block_rendering.d.ts +0 -63
  1056. package/core/renderers/common/constants.d.ts +0 -454
  1057. package/core/renderers/common/drawer.d.ts +0 -156
  1058. package/core/renderers/common/i_path_object.d.ts +0 -88
  1059. package/core/renderers/common/info.d.ts +0 -201
  1060. package/core/renderers/common/path_object.d.ts +0 -130
  1061. package/core/renderers/common/renderer.d.ts +0 -141
  1062. package/core/renderers/geras/constants.d.ts +0 -22
  1063. package/core/renderers/geras/drawer.d.ts +0 -44
  1064. package/core/renderers/geras/geras.d.ts +0 -17
  1065. package/core/renderers/geras/highlight_constants.d.ts +0 -100
  1066. package/core/renderers/geras/highlighter.d.ts +0 -96
  1067. package/core/renderers/geras/info.d.ts +0 -45
  1068. package/core/renderers/geras/measurables/inline_input.d.ts +0 -22
  1069. package/core/renderers/geras/measurables/statement_input.d.ts +0 -22
  1070. package/core/renderers/geras/path_object.d.ts +0 -42
  1071. package/core/renderers/geras/renderer.d.ts +0 -77
  1072. package/core/renderers/measurables/base.d.ts +0 -26
  1073. package/core/renderers/measurables/bottom_row.d.ts +0 -58
  1074. package/core/renderers/measurables/connection.d.ts +0 -25
  1075. package/core/renderers/measurables/external_value_input.d.ts +0 -25
  1076. package/core/renderers/measurables/field.d.ts +0 -28
  1077. package/core/renderers/measurables/hat.d.ts +0 -19
  1078. package/core/renderers/measurables/icon.d.ts +0 -25
  1079. package/core/renderers/measurables/in_row_spacer.d.ts +0 -20
  1080. package/core/renderers/measurables/inline_input.d.ts +0 -22
  1081. package/core/renderers/measurables/input_connection.d.ts +0 -28
  1082. package/core/renderers/measurables/input_row.d.ts +0 -26
  1083. package/core/renderers/measurables/jagged_edge.d.ts +0 -19
  1084. package/core/renderers/measurables/next_connection.d.ts +0 -22
  1085. package/core/renderers/measurables/output_connection.d.ts +0 -24
  1086. package/core/renderers/measurables/previous_connection.d.ts +0 -22
  1087. package/core/renderers/measurables/round_corner.d.ts +0 -20
  1088. package/core/renderers/measurables/row.d.ts +0 -124
  1089. package/core/renderers/measurables/spacer_row.d.ts +0 -27
  1090. package/core/renderers/measurables/square_corner.d.ts +0 -20
  1091. package/core/renderers/measurables/statement_input.d.ts +0 -21
  1092. package/core/renderers/measurables/top_row.d.ts +0 -53
  1093. package/core/renderers/measurables/types.d.ts +0 -258
  1094. package/core/renderers/thrasos/info.d.ts +0 -37
  1095. package/core/renderers/thrasos/renderer.d.ts +0 -28
  1096. package/core/renderers/thrasos/thrasos.d.ts +0 -10
  1097. package/core/renderers/zelos/constants.d.ts +0 -165
  1098. package/core/renderers/zelos/drawer.d.ts +0 -51
  1099. package/core/renderers/zelos/info.d.ts +0 -89
  1100. package/core/renderers/zelos/measurables/bottom_row.d.ts +0 -26
  1101. package/core/renderers/zelos/measurables/inputs.d.ts +0 -21
  1102. package/core/renderers/zelos/measurables/row_elements.d.ts +0 -20
  1103. package/core/renderers/zelos/measurables/top_row.d.ts +0 -28
  1104. package/core/renderers/zelos/path_object.d.ts +0 -76
  1105. package/core/renderers/zelos/renderer.d.ts +0 -64
  1106. package/core/renderers/zelos/zelos.d.ts +0 -17
  1107. package/core/scrollbar.d.ts +0 -348
  1108. package/core/scrollbar_pair.d.ts +0 -121
  1109. package/core/separator_flyout_inflater.d.ts +0 -57
  1110. package/core/serialization/blocks.d.ts +0 -138
  1111. package/core/serialization/exceptions.d.ts +0 -81
  1112. package/core/serialization/priorities.d.ts +0 -20
  1113. package/core/serialization/procedures.d.ts +0 -97
  1114. package/core/serialization/registry.d.ts +0 -21
  1115. package/core/serialization/variables.d.ts +0 -38
  1116. package/core/serialization/workspace_comments.d.ts +0 -45
  1117. package/core/serialization/workspaces.d.ts +0 -29
  1118. package/core/serialization.d.ts +0 -19
  1119. package/core/shortcut_items.d.ts +0 -54
  1120. package/core/shortcut_registry.d.ts +0 -236
  1121. package/core/sprites.d.ts +0 -15
  1122. package/core/theme/classic.d.ts +0 -12
  1123. package/core/theme/themes.d.ts +0 -9
  1124. package/core/theme/zelos.d.ts +0 -11
  1125. package/core/theme.d.ts +0 -151
  1126. package/core/theme_manager.d.ts +0 -92
  1127. package/core/toast.d.ts +0 -74
  1128. package/core/toolbox/category.d.ts +0 -265
  1129. package/core/toolbox/collapsible_category.d.ts +0 -99
  1130. package/core/toolbox/separator.d.ts +0 -40
  1131. package/core/toolbox/toolbox.d.ts +0 -417
  1132. package/core/toolbox/toolbox_item.d.ts +0 -109
  1133. package/core/tooltip.d.ts +0 -118
  1134. package/core/touch.d.ts +0 -72
  1135. package/core/trashcan.d.ts +0 -212
  1136. package/core/utils/aria.d.ts +0 -69
  1137. package/core/utils/array.d.ts +0 -15
  1138. package/core/utils/colour.d.ts +0 -102
  1139. package/core/utils/coordinate.d.ts +0 -87
  1140. package/core/utils/deprecation.d.ts +0 -18
  1141. package/core/utils/dom.d.ts +0 -154
  1142. package/core/utils/drag.d.ts +0 -33
  1143. package/core/utils/focusable_tree_traverser.d.ts +0 -53
  1144. package/core/utils/idgenerator.d.ts +0 -33
  1145. package/core/utils/keycodes.d.ts +0 -136
  1146. package/core/utils/math.d.ts +0 -31
  1147. package/core/utils/metrics.d.ts +0 -64
  1148. package/core/utils/object.d.ts +0 -17
  1149. package/core/utils/parsing.d.ts +0 -52
  1150. package/core/utils/rect.d.ts +0 -82
  1151. package/core/utils/size.d.ts +0 -44
  1152. package/core/utils/string.d.ts +0 -46
  1153. package/core/utils/style.d.ts +0 -89
  1154. package/core/utils/svg.d.ts +0 -75
  1155. package/core/utils/svg_math.d.ts +0 -64
  1156. package/core/utils/svg_paths.d.ts +0 -103
  1157. package/core/utils/toolbox.d.ts +0 -180
  1158. package/core/utils/useragent.d.ts +0 -14
  1159. package/core/utils/xml.d.ts +0 -96
  1160. package/core/utils.d.ts +0 -31
  1161. package/core/variable_map.d.ts +0 -164
  1162. package/core/variable_model.d.ts +0 -73
  1163. package/core/variables.d.ts +0 -238
  1164. package/core/variables_dynamic.d.ts +0 -56
  1165. package/core/widgetdiv.d.ts +0 -87
  1166. package/core/workspace.d.ts +0 -482
  1167. package/core/workspace_audio.d.ts +0 -61
  1168. package/core/workspace_dragger.d.ts +0 -54
  1169. package/core/workspace_svg.d.ts +0 -1103
  1170. package/core/xml.d.ts +0 -127
  1171. package/core/zoom_controls.d.ts +0 -134
  1172. package/core.js +0 -4
  1173. package/dart.js +0 -4
  1174. package/dart.mjs +0 -6
  1175. package/dart_compressed.js +0 -330
  1176. package/dart_compressed.js.map +0 -1
  1177. package/generators/dart/dart_generator.d.ts +0 -104
  1178. package/generators/dart/lists.d.ts +0 -21
  1179. package/generators/dart/logic.d.ts +0 -20
  1180. package/generators/dart/loops.d.ts +0 -14
  1181. package/generators/dart/math.d.ts +0 -26
  1182. package/generators/dart/procedures.d.ts +0 -14
  1183. package/generators/dart/text.d.ts +0 -25
  1184. package/generators/dart/variables.d.ts +0 -14
  1185. package/generators/dart/variables_dynamic.d.ts +0 -10
  1186. package/generators/dart.d.ts +0 -18
  1187. package/generators/javascript/javascript_generator.d.ts +0 -123
  1188. package/generators/javascript/lists.d.ts +0 -21
  1189. package/generators/javascript/logic.d.ts +0 -20
  1190. package/generators/javascript/loops.d.ts +0 -14
  1191. package/generators/javascript/math.d.ts +0 -26
  1192. package/generators/javascript/procedures.d.ts +0 -14
  1193. package/generators/javascript/text.d.ts +0 -25
  1194. package/generators/javascript/variables.d.ts +0 -14
  1195. package/generators/javascript/variables_dynamic.d.ts +0 -10
  1196. package/generators/javascript.d.ts +0 -18
  1197. package/generators/lua/lists.d.ts +0 -21
  1198. package/generators/lua/logic.d.ts +0 -20
  1199. package/generators/lua/loops.d.ts +0 -14
  1200. package/generators/lua/lua_generator.d.ts +0 -91
  1201. package/generators/lua/math.d.ts +0 -26
  1202. package/generators/lua/procedures.d.ts +0 -14
  1203. package/generators/lua/text.d.ts +0 -25
  1204. package/generators/lua/variables.d.ts +0 -14
  1205. package/generators/lua/variables_dynamic.d.ts +0 -10
  1206. package/generators/lua.d.ts +0 -12
  1207. package/generators/php/lists.d.ts +0 -21
  1208. package/generators/php/logic.d.ts +0 -20
  1209. package/generators/php/loops.d.ts +0 -14
  1210. package/generators/php/math.d.ts +0 -26
  1211. package/generators/php/php_generator.d.ts +0 -122
  1212. package/generators/php/procedures.d.ts +0 -14
  1213. package/generators/php/text.d.ts +0 -25
  1214. package/generators/php/variables.d.ts +0 -14
  1215. package/generators/php/variables_dynamic.d.ts +0 -10
  1216. package/generators/php.d.ts +0 -13
  1217. package/generators/python/lists.d.ts +0 -21
  1218. package/generators/python/logic.d.ts +0 -20
  1219. package/generators/python/loops.d.ts +0 -14
  1220. package/generators/python/math.d.ts +0 -26
  1221. package/generators/python/procedures.d.ts +0 -14
  1222. package/generators/python/python_generator.d.ts +0 -111
  1223. package/generators/python/text.d.ts +0 -25
  1224. package/generators/python/variables.d.ts +0 -14
  1225. package/generators/python/variables_dynamic.d.ts +0 -10
  1226. package/generators/python.d.ts +0 -13
  1227. package/index.js +0 -36
  1228. package/index.mjs +0 -163
  1229. package/javascript.js +0 -4
  1230. package/javascript.mjs +0 -6
  1231. package/javascript_compressed.js +0 -264
  1232. package/javascript_compressed.js.map +0 -1
  1233. package/lua.js +0 -4
  1234. package/lua.mjs +0 -6
  1235. package/lua_compressed.js +0 -373
  1236. package/lua_compressed.js.map +0 -1
  1237. package/media/click.ogg +0 -0
  1238. package/media/click.wav +0 -0
  1239. package/media/delete.ogg +0 -0
  1240. package/media/delete.wav +0 -0
  1241. package/media/disconnect.ogg +0 -0
  1242. package/media/disconnect.wav +0 -0
  1243. package/msg/ab.js +0 -466
  1244. package/msg/ab.mjs +0 -446
  1245. package/msg/ace.js +0 -466
  1246. package/msg/ace.mjs +0 -446
  1247. package/msg/af.js +0 -466
  1248. package/msg/af.mjs +0 -446
  1249. package/msg/am.js +0 -466
  1250. package/msg/am.mjs +0 -446
  1251. package/msg/ar.js +0 -466
  1252. package/msg/ar.mjs +0 -446
  1253. package/msg/ast.js +0 -466
  1254. package/msg/ast.mjs +0 -446
  1255. package/msg/az.js +0 -466
  1256. package/msg/az.mjs +0 -446
  1257. package/msg/ba.js +0 -466
  1258. package/msg/ba.mjs +0 -446
  1259. package/msg/bcc.js +0 -466
  1260. package/msg/bcc.mjs +0 -446
  1261. package/msg/be-tarask.js +0 -466
  1262. package/msg/be-tarask.mjs +0 -446
  1263. package/msg/be.js +0 -466
  1264. package/msg/be.mjs +0 -446
  1265. package/msg/bg.js +0 -466
  1266. package/msg/bg.mjs +0 -446
  1267. package/msg/bn.js +0 -466
  1268. package/msg/bn.mjs +0 -446
  1269. package/msg/br.js +0 -466
  1270. package/msg/br.mjs +0 -446
  1271. package/msg/bs.js +0 -466
  1272. package/msg/bs.mjs +0 -446
  1273. package/msg/ca.js +0 -466
  1274. package/msg/ca.mjs +0 -446
  1275. package/msg/cdo.js +0 -466
  1276. package/msg/cdo.mjs +0 -446
  1277. package/msg/ce.js +0 -466
  1278. package/msg/ce.mjs +0 -446
  1279. package/msg/cs.js +0 -466
  1280. package/msg/cs.mjs +0 -446
  1281. package/msg/da.js +0 -466
  1282. package/msg/da.mjs +0 -446
  1283. package/msg/de.js +0 -466
  1284. package/msg/de.mjs +0 -446
  1285. package/msg/diq.js +0 -466
  1286. package/msg/diq.mjs +0 -446
  1287. package/msg/dtp.js +0 -466
  1288. package/msg/dtp.mjs +0 -446
  1289. package/msg/dty.js +0 -466
  1290. package/msg/dty.mjs +0 -446
  1291. package/msg/ee.js +0 -466
  1292. package/msg/ee.mjs +0 -446
  1293. package/msg/el.js +0 -466
  1294. package/msg/el.mjs +0 -446
  1295. package/msg/en-gb.js +0 -466
  1296. package/msg/en-gb.mjs +0 -446
  1297. package/msg/en.js +0 -466
  1298. package/msg/en.mjs +0 -446
  1299. package/msg/eo.js +0 -466
  1300. package/msg/eo.mjs +0 -446
  1301. package/msg/es.js +0 -466
  1302. package/msg/es.mjs +0 -446
  1303. package/msg/et.js +0 -466
  1304. package/msg/et.mjs +0 -446
  1305. package/msg/eu.js +0 -466
  1306. package/msg/eu.mjs +0 -446
  1307. package/msg/fa.js +0 -466
  1308. package/msg/fa.mjs +0 -446
  1309. package/msg/fi.js +0 -466
  1310. package/msg/fi.mjs +0 -446
  1311. package/msg/fo.js +0 -466
  1312. package/msg/fo.mjs +0 -446
  1313. package/msg/fr.js +0 -466
  1314. package/msg/fr.mjs +0 -446
  1315. package/msg/frr.js +0 -466
  1316. package/msg/frr.mjs +0 -446
  1317. package/msg/gl.js +0 -466
  1318. package/msg/gl.mjs +0 -446
  1319. package/msg/gn.js +0 -466
  1320. package/msg/gn.mjs +0 -446
  1321. package/msg/gor.js +0 -466
  1322. package/msg/gor.mjs +0 -446
  1323. package/msg/ha.js +0 -466
  1324. package/msg/ha.mjs +0 -446
  1325. package/msg/hak.js +0 -466
  1326. package/msg/hak.mjs +0 -446
  1327. package/msg/he.js +0 -466
  1328. package/msg/he.mjs +0 -446
  1329. package/msg/hi.js +0 -466
  1330. package/msg/hi.mjs +0 -446
  1331. package/msg/hr.js +0 -466
  1332. package/msg/hr.mjs +0 -446
  1333. package/msg/hrx.js +0 -466
  1334. package/msg/hrx.mjs +0 -446
  1335. package/msg/hsb.js +0 -466
  1336. package/msg/hsb.mjs +0 -446
  1337. package/msg/hu.js +0 -466
  1338. package/msg/hu.mjs +0 -446
  1339. package/msg/hy.js +0 -466
  1340. package/msg/hy.mjs +0 -446
  1341. package/msg/ia.js +0 -466
  1342. package/msg/ia.mjs +0 -446
  1343. package/msg/id.js +0 -466
  1344. package/msg/id.mjs +0 -446
  1345. package/msg/ig.js +0 -466
  1346. package/msg/ig.mjs +0 -446
  1347. package/msg/inh.js +0 -466
  1348. package/msg/inh.mjs +0 -446
  1349. package/msg/is.js +0 -466
  1350. package/msg/is.mjs +0 -446
  1351. package/msg/it.js +0 -466
  1352. package/msg/it.mjs +0 -446
  1353. package/msg/ja.js +0 -466
  1354. package/msg/ja.mjs +0 -446
  1355. package/msg/ka.js +0 -466
  1356. package/msg/ka.mjs +0 -446
  1357. package/msg/kab.js +0 -466
  1358. package/msg/kab.mjs +0 -446
  1359. package/msg/kbd-cyrl.js +0 -466
  1360. package/msg/kbd-cyrl.mjs +0 -446
  1361. package/msg/km.js +0 -466
  1362. package/msg/km.mjs +0 -446
  1363. package/msg/kn.js +0 -466
  1364. package/msg/kn.mjs +0 -446
  1365. package/msg/ko.js +0 -466
  1366. package/msg/ko.mjs +0 -446
  1367. package/msg/ksh.js +0 -466
  1368. package/msg/ksh.mjs +0 -446
  1369. package/msg/ku-latn.js +0 -466
  1370. package/msg/ku-latn.mjs +0 -446
  1371. package/msg/ky.js +0 -466
  1372. package/msg/ky.mjs +0 -446
  1373. package/msg/la.js +0 -466
  1374. package/msg/la.mjs +0 -446
  1375. package/msg/lb.js +0 -466
  1376. package/msg/lb.mjs +0 -446
  1377. package/msg/lki.js +0 -466
  1378. package/msg/lki.mjs +0 -446
  1379. package/msg/lo.js +0 -466
  1380. package/msg/lo.mjs +0 -446
  1381. package/msg/lrc.js +0 -466
  1382. package/msg/lrc.mjs +0 -446
  1383. package/msg/lt.js +0 -466
  1384. package/msg/lt.mjs +0 -446
  1385. package/msg/lv.js +0 -466
  1386. package/msg/lv.mjs +0 -446
  1387. package/msg/mg.js +0 -466
  1388. package/msg/mg.mjs +0 -446
  1389. package/msg/mk.js +0 -466
  1390. package/msg/mk.mjs +0 -446
  1391. package/msg/ml.js +0 -466
  1392. package/msg/ml.mjs +0 -446
  1393. package/msg/mnw.js +0 -466
  1394. package/msg/mnw.mjs +0 -446
  1395. package/msg/ms.js +0 -466
  1396. package/msg/ms.mjs +0 -446
  1397. package/msg/my.js +0 -466
  1398. package/msg/my.mjs +0 -446
  1399. package/msg/mzn.js +0 -466
  1400. package/msg/mzn.mjs +0 -446
  1401. package/msg/nb.js +0 -466
  1402. package/msg/nb.mjs +0 -446
  1403. package/msg/ne.js +0 -466
  1404. package/msg/ne.mjs +0 -446
  1405. package/msg/nl.js +0 -466
  1406. package/msg/nl.mjs +0 -446
  1407. package/msg/oc.js +0 -466
  1408. package/msg/oc.mjs +0 -446
  1409. package/msg/olo.js +0 -466
  1410. package/msg/olo.mjs +0 -446
  1411. package/msg/pa.js +0 -466
  1412. package/msg/pa.mjs +0 -446
  1413. package/msg/pl.js +0 -466
  1414. package/msg/pl.mjs +0 -446
  1415. package/msg/pms.js +0 -466
  1416. package/msg/pms.mjs +0 -446
  1417. package/msg/ps.js +0 -466
  1418. package/msg/ps.mjs +0 -446
  1419. package/msg/pt-br.js +0 -466
  1420. package/msg/pt-br.mjs +0 -446
  1421. package/msg/pt.js +0 -466
  1422. package/msg/pt.mjs +0 -446
  1423. package/msg/ro.js +0 -466
  1424. package/msg/ro.mjs +0 -446
  1425. package/msg/ru.js +0 -466
  1426. package/msg/ru.mjs +0 -446
  1427. package/msg/sc.js +0 -466
  1428. package/msg/sc.mjs +0 -446
  1429. package/msg/sco.js +0 -466
  1430. package/msg/sco.mjs +0 -446
  1431. package/msg/sd.js +0 -466
  1432. package/msg/sd.mjs +0 -446
  1433. package/msg/shn.js +0 -466
  1434. package/msg/shn.mjs +0 -446
  1435. package/msg/si.js +0 -466
  1436. package/msg/si.mjs +0 -446
  1437. package/msg/sk.js +0 -466
  1438. package/msg/sk.mjs +0 -446
  1439. package/msg/skr-arab.js +0 -466
  1440. package/msg/skr-arab.mjs +0 -446
  1441. package/msg/sl.js +0 -466
  1442. package/msg/sl.mjs +0 -446
  1443. package/msg/smn.js +0 -466
  1444. package/msg/smn.mjs +0 -446
  1445. package/msg/sq.js +0 -466
  1446. package/msg/sq.mjs +0 -446
  1447. package/msg/sr-latn.js +0 -466
  1448. package/msg/sr-latn.mjs +0 -446
  1449. package/msg/sr.js +0 -466
  1450. package/msg/sr.mjs +0 -446
  1451. package/msg/sv.js +0 -466
  1452. package/msg/sv.mjs +0 -446
  1453. package/msg/sw.js +0 -466
  1454. package/msg/sw.mjs +0 -446
  1455. package/msg/ta.js +0 -466
  1456. package/msg/ta.mjs +0 -446
  1457. package/msg/tcy.js +0 -466
  1458. package/msg/tcy.mjs +0 -446
  1459. package/msg/tdd.js +0 -466
  1460. package/msg/tdd.mjs +0 -446
  1461. package/msg/te.js +0 -466
  1462. package/msg/te.mjs +0 -446
  1463. package/msg/th.js +0 -466
  1464. package/msg/th.mjs +0 -446
  1465. package/msg/ti.js +0 -466
  1466. package/msg/ti.mjs +0 -446
  1467. package/msg/tl.js +0 -466
  1468. package/msg/tl.mjs +0 -446
  1469. package/msg/tlh.js +0 -466
  1470. package/msg/tlh.mjs +0 -446
  1471. package/msg/tr.js +0 -466
  1472. package/msg/tr.mjs +0 -446
  1473. package/msg/ug-arab.js +0 -466
  1474. package/msg/ug-arab.mjs +0 -446
  1475. package/msg/uk.js +0 -466
  1476. package/msg/uk.mjs +0 -446
  1477. package/msg/ur.js +0 -466
  1478. package/msg/ur.mjs +0 -446
  1479. package/msg/uz.js +0 -466
  1480. package/msg/uz.mjs +0 -446
  1481. package/msg/vi.js +0 -466
  1482. package/msg/vi.mjs +0 -446
  1483. package/msg/xmf.js +0 -466
  1484. package/msg/xmf.mjs +0 -446
  1485. package/msg/yo.js +0 -466
  1486. package/msg/yo.mjs +0 -446
  1487. package/msg/zgh.js +0 -466
  1488. package/msg/zgh.mjs +0 -446
  1489. package/msg/zh-hans.js +0 -466
  1490. package/msg/zh-hans.mjs +0 -446
  1491. package/msg/zh-hant.js +0 -466
  1492. package/msg/zh-hant.mjs +0 -446
  1493. package/php.js +0 -4
  1494. package/php.mjs +0 -6
  1495. package/php_compressed.js +0 -283
  1496. package/php_compressed.js.map +0 -1
  1497. package/python.js +0 -4
  1498. package/python.mjs +0 -6
  1499. package/python_compressed.js +0 -208
  1500. package/python_compressed.js.map +0 -1
  1501. /package/{README.md → scripts/package/README.md} +0 -0
  1502. /package/{core-node.js → scripts/package/core-node.js} +0 -0
  1503. /package/{blocks.d.ts → typings/blocks.d.ts} +0 -0
  1504. /package/{core.d.ts → typings/core.d.ts} +0 -0
  1505. /package/{dart.d.ts → typings/dart.d.ts} +0 -0
  1506. /package/{index.d.ts → typings/index.d.ts} +0 -0
  1507. /package/{javascript.d.ts → typings/javascript.d.ts} +0 -0
  1508. /package/{lua.d.ts → typings/lua.d.ts} +0 -0
  1509. /package/{msg → typings/msg}/ab.d.ts +0 -0
  1510. /package/{msg → typings/msg}/ace.d.ts +0 -0
  1511. /package/{msg → typings/msg}/af.d.ts +0 -0
  1512. /package/{msg → typings/msg}/am.d.ts +0 -0
  1513. /package/{msg → typings/msg}/ar.d.ts +0 -0
  1514. /package/{msg → typings/msg}/ast.d.ts +0 -0
  1515. /package/{msg → typings/msg}/az.d.ts +0 -0
  1516. /package/{msg → typings/msg}/ba.d.ts +0 -0
  1517. /package/{msg → typings/msg}/bcc.d.ts +0 -0
  1518. /package/{msg → typings/msg}/be-tarask.d.ts +0 -0
  1519. /package/{msg → typings/msg}/be.d.ts +0 -0
  1520. /package/{msg → typings/msg}/bg.d.ts +0 -0
  1521. /package/{msg → typings/msg}/bn.d.ts +0 -0
  1522. /package/{msg → typings/msg}/br.d.ts +0 -0
  1523. /package/{msg → typings/msg}/bs.d.ts +0 -0
  1524. /package/{msg → typings/msg}/ca.d.ts +0 -0
  1525. /package/{msg → typings/msg}/cdo.d.ts +0 -0
  1526. /package/{msg → typings/msg}/ce.d.ts +0 -0
  1527. /package/{msg → typings/msg}/cs.d.ts +0 -0
  1528. /package/{msg → typings/msg}/da.d.ts +0 -0
  1529. /package/{msg → typings/msg}/de.d.ts +0 -0
  1530. /package/{msg → typings/msg}/diq.d.ts +0 -0
  1531. /package/{msg → typings/msg}/dtp.d.ts +0 -0
  1532. /package/{msg → typings/msg}/dty.d.ts +0 -0
  1533. /package/{msg → typings/msg}/ee.d.ts +0 -0
  1534. /package/{msg → typings/msg}/el.d.ts +0 -0
  1535. /package/{msg → typings/msg}/en-gb.d.ts +0 -0
  1536. /package/{msg → typings/msg}/en.d.ts +0 -0
  1537. /package/{msg → typings/msg}/eo.d.ts +0 -0
  1538. /package/{msg → typings/msg}/es.d.ts +0 -0
  1539. /package/{msg → typings/msg}/et.d.ts +0 -0
  1540. /package/{msg → typings/msg}/eu.d.ts +0 -0
  1541. /package/{msg → typings/msg}/fa.d.ts +0 -0
  1542. /package/{msg → typings/msg}/fi.d.ts +0 -0
  1543. /package/{msg → typings/msg}/fo.d.ts +0 -0
  1544. /package/{msg → typings/msg}/fr.d.ts +0 -0
  1545. /package/{msg → typings/msg}/frr.d.ts +0 -0
  1546. /package/{msg → typings/msg}/gl.d.ts +0 -0
  1547. /package/{msg → typings/msg}/gn.d.ts +0 -0
  1548. /package/{msg → typings/msg}/gor.d.ts +0 -0
  1549. /package/{msg → typings/msg}/ha.d.ts +0 -0
  1550. /package/{msg → typings/msg}/hak.d.ts +0 -0
  1551. /package/{msg → typings/msg}/he.d.ts +0 -0
  1552. /package/{msg → typings/msg}/hi.d.ts +0 -0
  1553. /package/{msg → typings/msg}/hr.d.ts +0 -0
  1554. /package/{msg → typings/msg}/hrx.d.ts +0 -0
  1555. /package/{msg → typings/msg}/hsb.d.ts +0 -0
  1556. /package/{msg → typings/msg}/hu.d.ts +0 -0
  1557. /package/{msg → typings/msg}/hy.d.ts +0 -0
  1558. /package/{msg → typings/msg}/ia.d.ts +0 -0
  1559. /package/{msg → typings/msg}/id.d.ts +0 -0
  1560. /package/{msg → typings/msg}/ig.d.ts +0 -0
  1561. /package/{msg → typings/msg}/inh.d.ts +0 -0
  1562. /package/{msg → typings/msg}/is.d.ts +0 -0
  1563. /package/{msg → typings/msg}/it.d.ts +0 -0
  1564. /package/{msg → typings/msg}/ja.d.ts +0 -0
  1565. /package/{msg → typings/msg}/ka.d.ts +0 -0
  1566. /package/{msg → typings/msg}/kab.d.ts +0 -0
  1567. /package/{msg → typings/msg}/kbd-cyrl.d.ts +0 -0
  1568. /package/{msg → typings/msg}/km.d.ts +0 -0
  1569. /package/{msg → typings/msg}/kn.d.ts +0 -0
  1570. /package/{msg → typings/msg}/ko.d.ts +0 -0
  1571. /package/{msg → typings/msg}/ksh.d.ts +0 -0
  1572. /package/{msg → typings/msg}/ku-latn.d.ts +0 -0
  1573. /package/{msg → typings/msg}/ky.d.ts +0 -0
  1574. /package/{msg → typings/msg}/la.d.ts +0 -0
  1575. /package/{msg → typings/msg}/lb.d.ts +0 -0
  1576. /package/{msg → typings/msg}/lki.d.ts +0 -0
  1577. /package/{msg → typings/msg}/lo.d.ts +0 -0
  1578. /package/{msg → typings/msg}/lrc.d.ts +0 -0
  1579. /package/{msg → typings/msg}/lt.d.ts +0 -0
  1580. /package/{msg → typings/msg}/lv.d.ts +0 -0
  1581. /package/{msg → typings/msg}/mg.d.ts +0 -0
  1582. /package/{msg → typings/msg}/mk.d.ts +0 -0
  1583. /package/{msg → typings/msg}/ml.d.ts +0 -0
  1584. /package/{msg → typings/msg}/mnw.d.ts +0 -0
  1585. /package/{msg → typings/msg}/ms.d.ts +0 -0
  1586. /package/{msg → typings/msg}/msg.d.ts +0 -0
  1587. /package/{msg → typings/msg}/my.d.ts +0 -0
  1588. /package/{msg → typings/msg}/mzn.d.ts +0 -0
  1589. /package/{msg → typings/msg}/nb.d.ts +0 -0
  1590. /package/{msg → typings/msg}/ne.d.ts +0 -0
  1591. /package/{msg → typings/msg}/nl.d.ts +0 -0
  1592. /package/{msg → typings/msg}/oc.d.ts +0 -0
  1593. /package/{msg → typings/msg}/olo.d.ts +0 -0
  1594. /package/{msg → typings/msg}/pa.d.ts +0 -0
  1595. /package/{msg → typings/msg}/pl.d.ts +0 -0
  1596. /package/{msg → typings/msg}/pms.d.ts +0 -0
  1597. /package/{msg → typings/msg}/ps.d.ts +0 -0
  1598. /package/{msg → typings/msg}/pt-br.d.ts +0 -0
  1599. /package/{msg → typings/msg}/pt.d.ts +0 -0
  1600. /package/{msg → typings/msg}/ro.d.ts +0 -0
  1601. /package/{msg → typings/msg}/ru.d.ts +0 -0
  1602. /package/{msg → typings/msg}/sc.d.ts +0 -0
  1603. /package/{msg → typings/msg}/sco.d.ts +0 -0
  1604. /package/{msg → typings/msg}/sd.d.ts +0 -0
  1605. /package/{msg → typings/msg}/shn.d.ts +0 -0
  1606. /package/{msg → typings/msg}/si.d.ts +0 -0
  1607. /package/{msg → typings/msg}/sk.d.ts +0 -0
  1608. /package/{msg → typings/msg}/skr-arab.d.ts +0 -0
  1609. /package/{msg → typings/msg}/sl.d.ts +0 -0
  1610. /package/{msg → typings/msg}/smn.d.ts +0 -0
  1611. /package/{msg → typings/msg}/sq.d.ts +0 -0
  1612. /package/{msg → typings/msg}/sr-latn.d.ts +0 -0
  1613. /package/{msg → typings/msg}/sr.d.ts +0 -0
  1614. /package/{msg → typings/msg}/sv.d.ts +0 -0
  1615. /package/{msg → typings/msg}/sw.d.ts +0 -0
  1616. /package/{msg → typings/msg}/ta.d.ts +0 -0
  1617. /package/{msg → typings/msg}/tcy.d.ts +0 -0
  1618. /package/{msg → typings/msg}/tdd.d.ts +0 -0
  1619. /package/{msg → typings/msg}/te.d.ts +0 -0
  1620. /package/{msg → typings/msg}/th.d.ts +0 -0
  1621. /package/{msg → typings/msg}/ti.d.ts +0 -0
  1622. /package/{msg → typings/msg}/tl.d.ts +0 -0
  1623. /package/{msg → typings/msg}/tlh.d.ts +0 -0
  1624. /package/{msg → typings/msg}/tr.d.ts +0 -0
  1625. /package/{msg → typings/msg}/ug-arab.d.ts +0 -0
  1626. /package/{msg → typings/msg}/uk.d.ts +0 -0
  1627. /package/{msg → typings/msg}/ur.d.ts +0 -0
  1628. /package/{msg → typings/msg}/uz.d.ts +0 -0
  1629. /package/{msg → typings/msg}/vi.d.ts +0 -0
  1630. /package/{msg → typings/msg}/xmf.d.ts +0 -0
  1631. /package/{msg → typings/msg}/yo.d.ts +0 -0
  1632. /package/{msg → typings/msg}/zgh.d.ts +0 -0
  1633. /package/{msg → typings/msg}/zh-hans.d.ts +0 -0
  1634. /package/{msg → typings/msg}/zh-hant.d.ts +0 -0
  1635. /package/{php.d.ts → typings/php.d.ts} +0 -0
  1636. /package/{python.d.ts → typings/python.d.ts} +0 -0
@@ -0,0 +1,1407 @@
1
+ from numbers import Number
2
+ import math
3
+ import random
4
+ import sys
5
+
6
+ unittestResults = None
7
+ test_name = None
8
+ naked = None
9
+ proc_x = None
10
+ proc_y = None
11
+ func_x = None
12
+ func_y = None
13
+ func_a = None
14
+ n = None
15
+ ok = None
16
+ log = None
17
+ count = None
18
+ varToChange = None
19
+ rand = None
20
+ item = None
21
+ text = None
22
+ number_of_calls = None
23
+ list2 = None
24
+ proc_z = None
25
+ func_z = None
26
+ x = None
27
+ proc_w = None
28
+ func_c = None
29
+ if2 = None
30
+ loglist = None
31
+ changing_list = None
32
+ list_copy = None
33
+
34
+ def unittest_report():
35
+ # Create test report.
36
+ report = []
37
+ summary = []
38
+ fails = 0
39
+ for (success, log, message) in unittestResults:
40
+ if success:
41
+ summary.append(".")
42
+ else:
43
+ summary.append("F")
44
+ fails += 1
45
+ report.append("")
46
+ report.append("FAIL: " + message)
47
+ report.append(log)
48
+ report.insert(0, "".join(summary))
49
+ report.append("")
50
+ report.append("Number of tests run: %d" % len(unittestResults))
51
+ report.append("")
52
+ if fails:
53
+ report.append("FAILED (failures=%d)" % fails)
54
+ else:
55
+ report.append("OK")
56
+ return "\n".join(report)
57
+
58
+ def assertEquals(actual, expected, message):
59
+ # Asserts that a value equals another value.
60
+ if unittestResults == None:
61
+ raise Exception("Orphaned assert equals: " + message)
62
+ if actual == expected:
63
+ unittestResults.append((True, "OK", message))
64
+ else:
65
+ unittestResults.append((False, "Expected: %s\nActual: %s" % (expected, actual), message))
66
+
67
+ def fail(message):
68
+ # Always assert an error.
69
+ if unittestResults == None:
70
+ raise Exception("Orphaned assert equals: " + message)
71
+ unittestResults.append((False, "Fail.", message))
72
+
73
+ # Describe this function...
74
+ def test_if():
75
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
76
+ if False:
77
+ fail('if false')
78
+ ok = False
79
+ if True:
80
+ ok = True
81
+ assertEquals(ok, True, 'if true')
82
+ ok = False
83
+ if False:
84
+ fail('if/else false')
85
+ else:
86
+ ok = True
87
+ assertEquals(ok, True, 'if/else false')
88
+ ok = False
89
+ if True:
90
+ ok = True
91
+ else:
92
+ fail('if/else true')
93
+ assertEquals(ok, True, 'if/else true')
94
+ ok = False
95
+ if False:
96
+ fail('elseif 1')
97
+ elif True:
98
+ ok = True
99
+ elif True:
100
+ fail('elseif 2')
101
+ else:
102
+ fail('elseif 3')
103
+ assertEquals(ok, True, 'elseif 4')
104
+
105
+ # Describe this function...
106
+ def test_ifelse():
107
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
108
+ ok = False
109
+ if True:
110
+ ok = True
111
+ else:
112
+ fail('ifelse true')
113
+ assertEquals(ok, True, 'ifelse true')
114
+ ok = False
115
+ if False:
116
+ fail('ifelse false')
117
+ else:
118
+ ok = True
119
+ assertEquals(ok, True, 'ifelse false')
120
+
121
+ # Describe this function...
122
+ def test_equalities():
123
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
124
+ assertEquals(2 == 2, True, 'Equal yes')
125
+ assertEquals(3 == 4, False, 'Equal no')
126
+ assertEquals(5 != 6, True, 'Not equal yes')
127
+ assertEquals(3 == 4, False, 'Not equal no')
128
+ assertEquals(5 < 6, True, 'Smaller yes')
129
+ assertEquals(7 < 7, False, 'Smaller no')
130
+ assertEquals(9 > 8, True, 'Greater yes')
131
+ assertEquals(10 > 10, False, 'Greater no')
132
+ assertEquals(11 <= 11, True, 'Smaller-equal yes')
133
+ assertEquals(13 <= 12, False, 'Smaller-equal no')
134
+ assertEquals(14 >= 14, True, 'Greater-equal yes')
135
+ assertEquals(15 >= 16, False, 'Greater-equal no')
136
+
137
+ # Describe this function...
138
+ def test_and():
139
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
140
+ assertEquals(True and True, True, 'And true/true')
141
+ assertEquals(False and True, False, 'And false/true')
142
+ assertEquals(True and False, False, 'And true/false')
143
+ assertEquals(False and False, False, 'And false/false')
144
+
145
+ # Describe this function...
146
+ def test_or():
147
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
148
+ assertEquals(True or True, True, 'Or true/true')
149
+ assertEquals(False or True, True, 'Or false/true')
150
+ assertEquals(True or False, True, 'Or true/false')
151
+ assertEquals(False or False, False, 'Or false/false')
152
+
153
+ # Describe this function...
154
+ def test_ternary():
155
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
156
+ assertEquals(42 if True else 99, 42, 'if true')
157
+ assertEquals(42 if False else 99, 99, 'if true')
158
+
159
+ # Describe this function...
160
+ def test_foreach():
161
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
162
+ log = ''
163
+ for x in ['a', 'b', 'c']:
164
+ log = str(log) + str(x)
165
+ assertEquals(log, 'abc', 'for loop')
166
+
167
+ # Describe this function...
168
+ def test_repeat():
169
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
170
+ count = 0
171
+ for count2 in range(10):
172
+ count = (count if isinstance(count, Number) else 0) + 1
173
+ assertEquals(count, 10, 'repeat 10')
174
+
175
+ # Describe this function...
176
+ def test_while():
177
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
178
+ while False:
179
+ fail('while 0')
180
+ while not True:
181
+ fail('until 0')
182
+ count = 1
183
+ while count != 10:
184
+ count = (count if isinstance(count, Number) else 0) + 1
185
+ assertEquals(count, 10, 'while 10')
186
+ count = 1
187
+ while not count == 10:
188
+ count = (count if isinstance(count, Number) else 0) + 1
189
+ assertEquals(count, 10, 'until 10')
190
+
191
+ # Describe this function...
192
+ def test_repeat_ext():
193
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
194
+ count = 0
195
+ for count3 in range(10):
196
+ count = (count if isinstance(count, Number) else 0) + 1
197
+ assertEquals(count, 10, 'repeat 10')
198
+
199
+ def upRange(start, stop, step):
200
+ while start <= stop:
201
+ yield start
202
+ start += abs(step)
203
+
204
+ def downRange(start, stop, step):
205
+ while start >= stop:
206
+ yield start
207
+ start -= abs(step)
208
+
209
+ # Describe this function...
210
+ def test_count_by():
211
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
212
+ log = ''
213
+ for x in range(1, 9, 2):
214
+ log = str(log) + str(x)
215
+ assertEquals(log, '1357', 'count up ints')
216
+ log = ''
217
+ for x in range(8, 0, -2):
218
+ log = str(log) + str(x)
219
+ assertEquals(log, '8642', 'count down ints')
220
+ loglist = []
221
+ for x in upRange(1, 8, 1.5):
222
+ loglist.append(x)
223
+ assertEquals(loglist, [1, 2.5, 4, 5.5, 7], 'count with floats')
224
+ loglist = []
225
+ x_start = 1 + 0
226
+ x_end = 8 + 0
227
+ x_inc = 1 - 2
228
+ for x in (x_start <= x_end) and upRange(x_start, x_end, x_inc) or downRange(x_start, x_end, x_inc):
229
+ loglist.append(x)
230
+ assertEquals(loglist, [1, 2, 3, 4, 5, 6, 7, 8], 'count up non-trivial ints')
231
+ loglist = []
232
+ x_start2 = 8 + 0
233
+ x_end2 = 1 + 0
234
+ for x in (x_start2 <= x_end2) and upRange(x_start2, x_end2, 2) or downRange(x_start2, x_end2, 2):
235
+ loglist.append(x)
236
+ assertEquals(loglist, [8, 6, 4, 2], 'count down non-trivial ints')
237
+ loglist = []
238
+ x_start3 = 5 + 0.5
239
+ x_end3 = 1 + 0
240
+ x_inc2 = 1 + 0
241
+ for x in (x_start3 <= x_end3) and upRange(x_start3, x_end3, x_inc2) or downRange(x_start3, x_end3, x_inc2):
242
+ loglist.append(x)
243
+ assertEquals(loglist, [5.5, 4.5, 3.5, 2.5, 1.5], 'count with floats')
244
+
245
+ # Describe this function...
246
+ def test_count_loops():
247
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
248
+ log = ''
249
+ for x in range(1, 9):
250
+ log = str(log) + str(x)
251
+ assertEquals(log, '12345678', 'count up')
252
+ log = ''
253
+ for x in range(8, 0, -1):
254
+ log = str(log) + str(x)
255
+ assertEquals(log, '87654321', 'count down')
256
+ loglist = []
257
+ x_start4 = 1 + 0
258
+ x_end4 = 4 + 0
259
+ for x in (x_start4 <= x_end4) and upRange(x_start4, x_end4, 1) or downRange(x_start4, x_end4, 1):
260
+ loglist.append(x)
261
+ assertEquals(loglist, [1, 2, 3, 4], 'count up non-trivial')
262
+ loglist = []
263
+ x_start5 = 3 + 1
264
+ x_end5 = 1 + 0
265
+ for x in (x_start5 <= x_end5) and upRange(x_start5, x_end5, 1) or downRange(x_start5, x_end5, 1):
266
+ loglist.append(x)
267
+ assertEquals(loglist, [4, 3, 2, 1], 'count down non-trivial')
268
+
269
+ # Describe this function...
270
+ def test_continue():
271
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
272
+ log = ''
273
+ count = 0
274
+ while count != 8:
275
+ count = (count if isinstance(count, Number) else 0) + 1
276
+ if count == 5:
277
+ continue
278
+ log = str(log) + str(count)
279
+ assertEquals(log, '1234678', 'while continue')
280
+ log = ''
281
+ count = 0
282
+ while not count == 8:
283
+ count = (count if isinstance(count, Number) else 0) + 1
284
+ if count == 5:
285
+ continue
286
+ log = str(log) + str(count)
287
+ assertEquals(log, '1234678', 'until continue')
288
+ log = ''
289
+ for x in range(1, 9):
290
+ if x == 5:
291
+ continue
292
+ log = str(log) + str(x)
293
+ assertEquals(log, '1234678', 'count continue')
294
+ log = ''
295
+ for x in ['a', 'b', 'c', 'd']:
296
+ if x == 'c':
297
+ continue
298
+ log = str(log) + str(x)
299
+ assertEquals(log, 'abd', 'for continue')
300
+
301
+ # Describe this function...
302
+ def test_break():
303
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
304
+ count = 1
305
+ while count != 10:
306
+ if count == 5:
307
+ break
308
+ count = (count if isinstance(count, Number) else 0) + 1
309
+ assertEquals(count, 5, 'while break')
310
+ count = 1
311
+ while not count == 10:
312
+ if count == 5:
313
+ break
314
+ count = (count if isinstance(count, Number) else 0) + 1
315
+ assertEquals(count, 5, 'until break')
316
+ log = ''
317
+ for x in range(1, 9):
318
+ if x == 5:
319
+ break
320
+ log = str(log) + str(x)
321
+ assertEquals(log, '1234', 'count break')
322
+ log = ''
323
+ for x in ['a', 'b', 'c', 'd']:
324
+ if x == 'c':
325
+ break
326
+ log = str(log) + str(x)
327
+ assertEquals(log, 'ab', 'for break')
328
+
329
+ # Tests the "single" block.
330
+ def test_single():
331
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
332
+ assertEquals(math.sqrt(25), 5, 'sqrt')
333
+ assertEquals(math.fabs(-25), 25, 'abs')
334
+ assertEquals(-(-25), 25, 'negate')
335
+ assertEquals(math.log(1), 0, 'ln')
336
+ assertEquals(math.log10(100), 2, 'log10')
337
+ assertEquals(math.exp(2), 7.38905609893065, 'exp')
338
+ assertEquals(math.pow(10,2), 100, 'power10')
339
+
340
+ # Tests the "arithmetic" block for all operations and checks
341
+ # parenthesis are properly generated for different orders.
342
+ def test_arithmetic():
343
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
344
+ assertEquals(1 + 2, 3, 'add')
345
+ assertEquals(1 - 2, -1, 'subtract')
346
+ assertEquals(1 - (0 + 2), -1, 'subtract order with add')
347
+ assertEquals(1 - (0 - 2), 3, 'subtract order with subtract')
348
+ assertEquals(4 * 2.5, 10, 'multiply')
349
+ assertEquals(4 * (0 + 2.5), 10, 'multiply order')
350
+ assertEquals(8.2 / -5, -1.64, 'divide')
351
+ assertEquals(8.2 / (0 + -5), -1.64, 'divide order')
352
+ assertEquals(10 ** 4, 10000, 'power')
353
+ assertEquals(10 ** (0 + 4), 10000, 'power order')
354
+
355
+ # Tests the "trig" block.
356
+ def test_trig():
357
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
358
+ assertEquals(math.sin(90 / 180.0 * math.pi), 1, 'sin')
359
+ assertEquals(math.cos(180 / 180.0 * math.pi), -1, 'cos')
360
+ assertEquals(math.tan(0 / 180.0 * math.pi), 0, 'tan')
361
+ assertEquals(math.asin(-1) / math.pi * 180, -90, 'asin')
362
+ assertEquals(math.acos(1) / math.pi * 180, 0, 'acos')
363
+ assertEquals(math.atan(1) / math.pi * 180, 45, 'atan')
364
+
365
+ # Tests the "constant" blocks.
366
+ def test_constant():
367
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
368
+ assertEquals(math.floor(math.pi * 1000), 3141, 'const pi')
369
+ assertEquals(math.floor(math.e * 1000), 2718, 'const e')
370
+ assertEquals(math.floor(((1 + math.sqrt(5)) / 2) * 1000), 1618, 'const golden')
371
+ assertEquals(math.floor(math.sqrt(2) * 1000), 1414, 'const sqrt 2')
372
+ assertEquals(math.floor(math.sqrt(1.0 / 2) * 1000), 707, 'const sqrt 0.5')
373
+ assertEquals(9999 < float('inf'), True, 'const infinity')
374
+
375
+ def math_isPrime(n):
376
+ # https://en.wikipedia.org/wiki/Primality_test#Naive_methods
377
+ # If n is not a number but a string, try parsing it.
378
+ if not isinstance(n, Number):
379
+ try:
380
+ n = float(n)
381
+ except:
382
+ return False
383
+ if n == 2 or n == 3:
384
+ return True
385
+ # False if n is negative, is 1, or not whole, or if n is divisible by 2 or 3.
386
+ if n <= 1 or n % 1 != 0 or n % 2 == 0 or n % 3 == 0:
387
+ return False
388
+ # Check all the numbers of form 6k +/- 1, up to sqrt(n).
389
+ for x in range(6, int(math.sqrt(n)) + 2, 6):
390
+ if n % (x - 1) == 0 or n % (x + 1) == 0:
391
+ return False
392
+ return True
393
+
394
+ # Tests the "number property" blocks.
395
+ def test_number_properties():
396
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
397
+ assertEquals(42 % 2 == 0, True, 'even')
398
+ assertEquals(42.1 % 2 == 1, False, 'odd')
399
+ assertEquals(math_isPrime(5), True, 'prime 5')
400
+ assertEquals(math_isPrime(5 + 2), True, 'prime 5 + 2 (extra parentheses)')
401
+ assertEquals(math_isPrime(25), False, 'prime 25')
402
+ assertEquals(math_isPrime(-31.1), False, 'prime negative')
403
+ assertEquals(math.pi % 1 == 0, False, 'whole')
404
+ assertEquals(float('inf') > 0, True, 'positive')
405
+ assertEquals(5 + 2 > 0, True, '5 + 2 is positive (extra parentheses)')
406
+ assertEquals(-42 < 0, True, 'negative')
407
+ assertEquals(3 + 2 < 0, False, '3 + 2 is negative (extra parentheses)')
408
+ assertEquals(42 % 2 == 0, True, 'divisible')
409
+ assertEquals(not False, True, 'divisible by 0')
410
+
411
+ # Tests the "round" block.
412
+ def test_round():
413
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
414
+ assertEquals(round(42.42), 42, 'round')
415
+ assertEquals(math.ceil(-42.42), -42, 'round up')
416
+ assertEquals(math.floor(42.42), 42, 'round down')
417
+
418
+ # Tests the "change" block.
419
+ def test_change():
420
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
421
+ varToChange = 100
422
+ varToChange = (varToChange if isinstance(varToChange, Number) else 0) + 42
423
+ assertEquals(varToChange, 142, 'change')
424
+
425
+ def math_mean(myList):
426
+ localList = [e for e in myList if isinstance(e, Number)]
427
+ if not localList: return
428
+ return float(sum(localList)) / len(localList)
429
+
430
+ def math_median(myList):
431
+ localList = sorted([e for e in myList if isinstance(e, Number)])
432
+ if not localList: return
433
+ if len(localList) % 2 == 0:
434
+ return (localList[len(localList) // 2 - 1] + localList[len(localList) // 2]) / 2.0
435
+ else:
436
+ return localList[(len(localList) - 1) // 2]
437
+
438
+ def math_modes(some_list):
439
+ modes = []
440
+ # Using a lists of [item, count] to keep count rather than dict
441
+ # to avoid "unhashable" errors when the counted item is itself a list or dict.
442
+ counts = []
443
+ maxCount = 1
444
+ for item in some_list:
445
+ found = False
446
+ for count in counts:
447
+ if count[0] == item:
448
+ count[1] += 1
449
+ maxCount = max(maxCount, count[1])
450
+ found = True
451
+ if not found:
452
+ counts.append([item, 1])
453
+ for counted_item, item_count in counts:
454
+ if item_count == maxCount:
455
+ modes.append(counted_item)
456
+ return modes
457
+
458
+ def math_standard_deviation(numbers):
459
+ n = len(numbers)
460
+ if n == 0: return
461
+ mean = float(sum(numbers)) / n
462
+ variance = sum((x - mean) ** 2 for x in numbers) / n
463
+ return math.sqrt(variance)
464
+
465
+ def first_index(my_list, elem):
466
+ try: index = my_list.index(elem) + 1
467
+ except: index = 0
468
+ return index
469
+
470
+ # Tests the "list operation" blocks.
471
+ def test_operations_on_list():
472
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
473
+ assertEquals(sum([3, 4, 5]), 12, 'sum')
474
+ assertEquals(min([3, 4, 5]), 3, 'min')
475
+ assertEquals(max([3, 4, 5]), 5, 'max')
476
+ assertEquals(math_mean([3, 4, 5]), 4, 'average')
477
+ assertEquals(math_median([3, 4, 5, 1]), 3.5, 'median')
478
+ assertEquals(math_modes([3, 4, 3]), [3], 'modes')
479
+ assertEquals(math_modes([3, 4, 3, 1, 4]), [3, 4], 'modes multiple')
480
+ assertEquals(math_standard_deviation([3, 3, 3]), 0, 'standard dev')
481
+ assertEquals(first_index([3, 4, 5], random.choice([3, 4, 5])) > 0, True, 'random')
482
+
483
+ # Tests the "mod" block.
484
+ def test_mod():
485
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
486
+ assertEquals(42 % 5, 2, 'mod')
487
+
488
+ # Tests the "constrain" block.
489
+ def test_constraint():
490
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
491
+ assertEquals(min(max(100, 0), 42), 42, 'constraint')
492
+
493
+ # Tests the "random integer" block.
494
+ def test_random_integer():
495
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
496
+ rand = random.randint(5, 10)
497
+ assertEquals(rand >= 5 and rand <= 10, True, 'randRange')
498
+ assertEquals(rand % 1 == 0, True, 'randInteger')
499
+
500
+ # Tests the "random fraction" block.
501
+ def test_random_fraction():
502
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
503
+ rand = random.random()
504
+ assertEquals(rand >= 0 and rand <= 1, True, 'randFloat')
505
+
506
+ # Describe this function...
507
+ def test_atan2():
508
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
509
+ assertEquals(math.atan2(5, -5) / math.pi * 180, 135, 'atan2')
510
+ assertEquals(math.atan2(-12, 0) / math.pi * 180, -90, 'atan2')
511
+
512
+ # Checks that the number of calls is one in order
513
+ # to confirm that a function was only called once.
514
+ def check_number_of_calls(test_name):
515
+ global naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
516
+ test_name = str(test_name) + 'number of calls'
517
+ assertEquals(number_of_calls, 1, test_name)
518
+
519
+ # Tests the "create text with" block with varying number of inputs.
520
+ def test_create_text():
521
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
522
+ assertEquals('', '', 'no text')
523
+ assertEquals('Hello', 'Hello', 'create single')
524
+ assertEquals(str(-1), '-1', 'create single number')
525
+ assertEquals('K' + str(9), 'K9', 'create double text')
526
+ assertEquals(str(4) + str(2), '42', 'create double text numbers')
527
+ assertEquals(''.join([str(x2) for x2 in [1, 2, 3]]), '123', 'create triple')
528
+ assertEquals(''.join([str(x3) for x3 in [1, 0 if True else None, 'M']]), '10M', 'create order')
529
+
530
+ # Creates an empty string for use with the empty test.
531
+ def get_empty():
532
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
533
+ return ''
534
+
535
+ # Tests the "is empty" block".
536
+ def test_empty_text():
537
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
538
+ assertEquals(not len('Google'), False, 'not empty')
539
+ assertEquals(not len(''), True, 'empty')
540
+ assertEquals(not len(get_empty()), True, 'empty complex')
541
+ assertEquals(not len('' if True else None), True, 'empty order')
542
+
543
+ # Tests the "length" block.
544
+ def test_text_length():
545
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
546
+ assertEquals(len(''), 0, 'zero length')
547
+ assertEquals(len('Google'), 6, 'non-zero length')
548
+ assertEquals(len('car' if True else None), 3, 'length order')
549
+
550
+ # Tests the "append text" block with different types of parameters.
551
+ def test_append():
552
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
553
+ item = 'Miserable'
554
+ item = str(item) + 'Failure'
555
+ assertEquals(item, 'MiserableFailure', 'append text')
556
+ item = 12
557
+ item = str(item) + str(34)
558
+ assertEquals(item, '1234', 'append number')
559
+ item = 'Something '
560
+ item = str(item) + str('Positive' if True else None)
561
+ assertEquals(item, 'Something Positive', 'append order')
562
+
563
+ # Tests the "find" block with a variable.
564
+ def test_find_text_simple():
565
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
566
+ text = 'Banana'
567
+ assertEquals(text.find('an') + 1, 2, 'find first simple')
568
+ assertEquals(text.rfind('an') + 1, 4, 'find last simple')
569
+ assertEquals(text.find('Peel') + 1, 0, 'find none simple')
570
+
571
+ # Creates a string for use with the find test.
572
+ def get_fruit():
573
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
574
+ number_of_calls = (number_of_calls if isinstance(number_of_calls, Number) else 0) + 1
575
+ return 'Banana'
576
+
577
+ # Tests the "find" block with a function call.
578
+ def test_find_text_complex():
579
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
580
+ number_of_calls = 0
581
+ assertEquals(get_fruit().find('an') + 1, 2, 'find first complex')
582
+ check_number_of_calls('find first complex')
583
+ number_of_calls = 0
584
+ assertEquals((get_fruit() if True else None).find('an') + 1, 2, 'find first order complex')
585
+ check_number_of_calls('find first order complex')
586
+ number_of_calls = 0
587
+ assertEquals(get_fruit().rfind('an') + 1, 4, 'find last complex')
588
+ check_number_of_calls('find last complex')
589
+ number_of_calls = 0
590
+ assertEquals((get_fruit() if True else None).rfind('an') + 1, 4, 'find last order complex')
591
+ check_number_of_calls('find last order complex')
592
+ number_of_calls = 0
593
+ assertEquals(get_fruit().find('Peel') + 1, 0, 'find none complex')
594
+ check_number_of_calls('find none complex')
595
+ number_of_calls = 0
596
+ assertEquals((get_fruit() if True else None).find('Peel') + 1, 0, 'find none order complex')
597
+ check_number_of_calls('find none order complex')
598
+
599
+ def text_random_letter(text):
600
+ x = int(random.random() * len(text))
601
+ return text[x]
602
+
603
+ # Tests the "get letter" block with a variable.
604
+ def test_get_text_simple():
605
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
606
+ text = 'Blockly'
607
+ assertEquals(text[0], 'B', 'get first simple')
608
+ assertEquals(text[-1], 'y', 'get last simple')
609
+ assertEquals(text.find(text_random_letter(text)) + 1 > 0, True, 'get random simple')
610
+ assertEquals(text[2], 'o', 'get # simple')
611
+ assertEquals(text[int((3 if True else None) - 1)], 'o', 'get # order simple')
612
+ assertEquals(text[-3], 'k', 'get #-end simple')
613
+ # The order for index for #-end is addition because this will catch errors in generators where most perform the operation ... - index.
614
+ assertEquals(text[-int(0 + 3)], 'k', 'get #-end order simple')
615
+
616
+ # Creates a string for use with the get test.
617
+ def get_Blockly():
618
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
619
+ number_of_calls = (number_of_calls if isinstance(number_of_calls, Number) else 0) + 1
620
+ return 'Blockly'
621
+
622
+ # Tests the "get letter" block with a function call.
623
+ def test_get_text_complex():
624
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
625
+ text = 'Blockly'
626
+ number_of_calls = 0
627
+ assertEquals(get_Blockly()[0], 'B', 'get first complex')
628
+ check_number_of_calls('get first complex')
629
+ number_of_calls = 0
630
+ assertEquals((get_Blockly() if True else None)[0], 'B', 'get first order complex')
631
+ check_number_of_calls('get first order complex')
632
+ number_of_calls = 0
633
+ assertEquals(get_Blockly()[-1], 'y', 'get last complex')
634
+ check_number_of_calls('get last complex')
635
+ number_of_calls = 0
636
+ assertEquals((get_Blockly() if True else None)[-1], 'y', 'get last order complex')
637
+ check_number_of_calls('get last order complex')
638
+ number_of_calls = 0
639
+ assertEquals(text.find(text_random_letter(get_Blockly())) + 1 > 0, True, 'get random complex')
640
+ check_number_of_calls('get random complex')
641
+ number_of_calls = 0
642
+ assertEquals(text.find(text_random_letter(get_Blockly() if True else None)) + 1 > 0, True, 'get random order complex')
643
+ check_number_of_calls('get random order complex')
644
+ number_of_calls = 0
645
+ assertEquals(get_Blockly()[2], 'o', 'get # complex')
646
+ check_number_of_calls('get # complex')
647
+ number_of_calls = 0
648
+ assertEquals((get_Blockly() if True else None)[int((3 if True else None) - 1)], 'o', 'get # order complex')
649
+ check_number_of_calls('get # order complex')
650
+ number_of_calls = 0
651
+ assertEquals(get_Blockly()[-3], 'k', 'get #-end complex')
652
+ check_number_of_calls('get #-end complex')
653
+ number_of_calls = 0
654
+ # The order for index for #-end is addition because this will catch errors in generators where most perform the operation ... - index.
655
+ assertEquals((get_Blockly() if True else None)[-int(0 + 3)], 'k', 'get #-end order complex')
656
+ check_number_of_calls('get #-end order complex')
657
+
658
+ # Creates a string for use with the substring test.
659
+ def get_numbers():
660
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
661
+ number_of_calls = (number_of_calls if isinstance(number_of_calls, Number) else 0) + 1
662
+ return '123456789'
663
+
664
+ # Tests the "get substring" block with a variable.
665
+ def test_substring_simple():
666
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
667
+ text = '123456789'
668
+ assertEquals(text[1 : 3], '23', 'substring # simple')
669
+ assertEquals(text[int((2 if True else None) - 1) : int(3 if True else None)], '23', 'substring # simple order')
670
+ assertEquals(text[-3 : -1], '78', 'substring #-end simple')
671
+ # The order for index for #-end is addition because this will catch errors in generators where most perform the operation ... - index.
672
+ assertEquals(text[-int(0 + 3) : -int((0 + 2) - 1) or sys.maxsize], '78', 'substring #-end simple order')
673
+ assertEquals(text[ : ], text, 'substring first-last simple')
674
+ assertEquals(text[1 : -1], '2345678', 'substring # #-end simple')
675
+ assertEquals(text[-7 : 4], '34', 'substring #-end # simple')
676
+ assertEquals(text[ : 4], '1234', 'substring first # simple')
677
+ assertEquals(text[ : -1], '12345678', 'substring first #-end simple')
678
+ assertEquals(text[6 : ], '789', 'substring # last simple')
679
+ assertEquals(text[-3 : ], '789', 'substring #-end last simple')
680
+ assertEquals(text[ : ], '123456789', 'substring all with # #-end simple')
681
+ assertEquals(text[-9 : 9], '123456789', 'substring all with #-end # simple')
682
+ # Checks that the whole string is properly retrieved even if the value for start and end is not a simple number. This is especially important in generators where substring uses [x:length - y] for # #-end.
683
+ assertEquals(text[int((0 + 1) - 1) : -int((0 + 1) - 1) or sys.maxsize], '123456789', 'substring all with # #-end math simple')
684
+
685
+ # Tests the "get substring" block with a function call.
686
+ def test_substring_complex():
687
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
688
+ number_of_calls = 0
689
+ assertEquals(get_numbers()[1 : 3], '23', 'substring # complex')
690
+ check_number_of_calls('substring # complex')
691
+ number_of_calls = 0
692
+ assertEquals((get_numbers() if True else None)[int((2 if True else None) - 1) : int(3 if True else None)], '23', 'substring # complex order')
693
+ check_number_of_calls('substring # complex order')
694
+ number_of_calls = 0
695
+ # The order for index for #-end is addition because this will catch errors in generators where most perform the operation ... - index.
696
+ assertEquals(get_numbers()[-3 : -1], '78', 'substring #-end complex')
697
+ check_number_of_calls('substring #-end complex')
698
+ number_of_calls = 0
699
+ assertEquals((get_numbers() if True else None)[-int(0 + 3) : -int((0 + 2) - 1) or sys.maxsize], '78', 'substring #-end order order')
700
+ check_number_of_calls('substring #-end order order')
701
+ number_of_calls = 0
702
+ assertEquals(get_numbers()[ : ], text, 'substring first-last')
703
+ check_number_of_calls('substring first-last')
704
+ number_of_calls = 0
705
+ assertEquals(get_numbers()[1 : -1], '2345678', 'substring # #-end complex')
706
+ check_number_of_calls('substring # #-end complex')
707
+ number_of_calls = 0
708
+ assertEquals(get_numbers()[-7 : 4], '34', 'substring #-end # complex')
709
+ check_number_of_calls('substring #-end # complex')
710
+ number_of_calls = 0
711
+ assertEquals(get_numbers()[ : 4], '1234', 'substring first # complex')
712
+ check_number_of_calls('substring first # complex')
713
+ number_of_calls = 0
714
+ assertEquals(get_numbers()[ : -1], '12345678', 'substring first #-end complex')
715
+ check_number_of_calls('substring first #-end complex')
716
+ number_of_calls = 0
717
+ assertEquals(get_numbers()[6 : ], '789', 'substring # last complex')
718
+ check_number_of_calls('substring # last complex')
719
+ number_of_calls = 0
720
+ assertEquals(get_numbers()[-3 : ], '789', 'substring #-end last complex')
721
+ check_number_of_calls('substring #-end last complex')
722
+ number_of_calls = 0
723
+ assertEquals(get_numbers()[ : ], '123456789', 'substring all with # #-end complex')
724
+ check_number_of_calls('substring all with # #-end complex')
725
+ number_of_calls = 0
726
+ assertEquals(get_numbers()[-9 : 9], '123456789', 'substring all with #-end # complex')
727
+ check_number_of_calls('substring all with #-end # complex')
728
+ number_of_calls = 0
729
+ # Checks that the whole string is properly retrieved even if the value for start and end is not a simple number. This is especially important in generators where substring uses [x:length - y] for # #-end.
730
+ assertEquals(get_numbers()[int((0 + 1) - 1) : -int((0 + 1) - 1) or sys.maxsize], '123456789', 'substring all with # #-end math complex')
731
+ check_number_of_calls('substring all with # #-end math complex')
732
+
733
+ # Tests the "change casing" block.
734
+ def test_case():
735
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
736
+ text = 'Hello World'
737
+ assertEquals(text.upper(), 'HELLO WORLD', 'uppercase')
738
+ assertEquals((text if True else None).upper(), 'HELLO WORLD', 'uppercase order')
739
+ text = 'Hello World'
740
+ assertEquals(text.lower(), 'hello world', 'lowercase')
741
+ assertEquals((text if True else None).lower(), 'hello world', 'lowercase order')
742
+ text = 'heLLo WorlD'
743
+ assertEquals(text.title(), 'Hello World', 'titlecase')
744
+ assertEquals((text if True else None).title(), 'Hello World', 'titlecase order')
745
+
746
+ # Tests the "trim" block.
747
+ def test_trim():
748
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
749
+ text = ' abc def '
750
+ assertEquals(text.strip(), 'abc def', 'trim both')
751
+ assertEquals((text if True else None).strip(), 'abc def', 'trim both order')
752
+ assertEquals(text.lstrip(), 'abc def ', 'trim left')
753
+ assertEquals((text if True else None).lstrip(), 'abc def ', 'trim left order')
754
+ assertEquals(text.rstrip(), ' abc def', 'trim right')
755
+ assertEquals((text if True else None).rstrip(), ' abc def', 'trim right order')
756
+
757
+ # Tests the "trim" block.
758
+ def test_count_text():
759
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
760
+ text = 'woolloomooloo'
761
+ assertEquals(text.count('o'), 8, 'len 1')
762
+ assertEquals(text.count('oo'), 4, 'len 2')
763
+ assertEquals(text.count('loo'), 2, 'len 3')
764
+ assertEquals(text.count('wool'), 1, 'start')
765
+ assertEquals(text.count('chicken'), 0, 'missing')
766
+ assertEquals(text.count(''), 14, 'empty needle')
767
+ assertEquals(''.count('chicken'), 0, 'empty source')
768
+
769
+ # Tests the "trim" block.
770
+ def test_text_reverse():
771
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
772
+ assertEquals(''[::-1], '', 'empty string')
773
+ assertEquals('a'[::-1], 'a', 'len 1')
774
+ assertEquals('ab'[::-1], 'ba', 'len 2')
775
+ assertEquals('woolloomooloo'[::-1], 'ooloomoolloow', 'longer')
776
+
777
+ # Tests the "trim" block.
778
+ def test_replace():
779
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
780
+ assertEquals('woolloomooloo'.replace('oo', '123'), 'w123ll123m123l123', 'replace all instances 1')
781
+ assertEquals('woolloomooloo'.replace('.oo', 'X'), 'woolloomooloo', 'literal string replacement')
782
+ assertEquals('woolloomooloo'.replace('abc', 'X'), 'woolloomooloo', 'not found')
783
+ assertEquals('woolloomooloo'.replace('o', ''), 'wllml', 'empty replacement 1')
784
+ assertEquals('aaaaa'.replace('aaaaa', ''), '', 'empty replacement 2')
785
+ assertEquals('aaaaa'.replace('a', ''), '', 'empty replacement 3')
786
+ assertEquals(''.replace('a', 'chicken'), '', 'empty source')
787
+
788
+ # Checks that the number of calls is one in order
789
+ # to confirm that a function was only called once.
790
+ def check_number_of_calls2(test_name):
791
+ global naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
792
+ test_name = str(test_name) + 'number of calls'
793
+ assertEquals(number_of_calls, 1, test_name)
794
+
795
+ # Tests the "create list with" and "create empty list" blocks.
796
+ def test_create_lists():
797
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
798
+ assertEquals([], [], 'create empty')
799
+ assertEquals([True, 'love'], [True, 'love'], 'create items')
800
+ assertEquals(['Eject'] * 3, ['Eject', 'Eject', 'Eject'], 'create repeated')
801
+ assertEquals(['Eject'] * (0 + 3), ['Eject', 'Eject', 'Eject'], 'create repeated order')
802
+
803
+ # Creates an empty list for use with the empty test.
804
+ def get_empty_list():
805
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
806
+ return []
807
+
808
+ # Tests the "is empty" block.
809
+ def test_lists_empty():
810
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
811
+ assertEquals(not len([0]), False, 'not empty')
812
+ assertEquals(not len([]), True, 'empty')
813
+ assertEquals(not len(get_empty_list()), True, 'empty complex')
814
+ assertEquals(not len([] if True else None), True, 'empty order')
815
+
816
+ # Tests the "length" block.
817
+ def test_lists_length():
818
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
819
+ assertEquals(len([]), 0, 'zero length')
820
+ assertEquals(len(['cat']), 1, 'one length')
821
+ assertEquals(len(['cat', True, []]), 3, 'three length')
822
+ assertEquals(len(['cat', True] if True else None), 2, 'two length order')
823
+
824
+ def last_index(my_list, elem):
825
+ try: index = len(my_list) - my_list[::-1].index(elem)
826
+ except: index = 0
827
+ return index
828
+
829
+ # Tests the "find" block with a variable.
830
+ def test_find_lists_simple():
831
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
832
+ list2 = ['Alice', 'Eve', 'Bob', 'Eve']
833
+ assertEquals(first_index(list2, 'Eve'), 2, 'find first simple')
834
+ assertEquals(last_index(list2, 'Eve'), 4, 'find last simple')
835
+ assertEquals(first_index(list2, 'Dave'), 0, 'find none simple')
836
+
837
+ # Creates a list for use with the find test.
838
+ def get_names():
839
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
840
+ number_of_calls = (number_of_calls if isinstance(number_of_calls, Number) else 0) + 1
841
+ return ['Alice', 'Eve', 'Bob', 'Eve']
842
+
843
+ # Tests the "find" block with a function call.
844
+ def test_find_lists_complex():
845
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
846
+ number_of_calls = 0
847
+ assertEquals(first_index(get_names(), 'Eve'), 2, 'find first complex')
848
+ check_number_of_calls('find first complex')
849
+ number_of_calls = 0
850
+ assertEquals(first_index(get_names() if True else None, 'Eve'), 2, 'find first order complex')
851
+ check_number_of_calls('find first order complex')
852
+ number_of_calls = 0
853
+ assertEquals(last_index(get_names(), 'Eve'), 4, 'find last complex')
854
+ check_number_of_calls('find last complex')
855
+ number_of_calls = 0
856
+ assertEquals(last_index(get_names() if True else None, 'Eve'), 4, 'find last order complex')
857
+ check_number_of_calls('find last order complex')
858
+ number_of_calls = 0
859
+ assertEquals(first_index(get_names(), 'Dave'), 0, 'find none complex')
860
+ check_number_of_calls('find none complex')
861
+ number_of_calls = 0
862
+ assertEquals(first_index(get_names() if True else None, 'Dave'), 0, 'find none order complex')
863
+ check_number_of_calls('find none order complex')
864
+
865
+ # Tests the "get" block with a variable.
866
+ def test_get_lists_simple():
867
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
868
+ list2 = ['Kirk', 'Spock', 'McCoy']
869
+ assertEquals(list2[0], 'Kirk', 'get first simple')
870
+ assertEquals(list2[-1], 'McCoy', 'get last simple')
871
+ assertEquals(first_index(list2, random.choice(list2)) > 0, True, 'get random simple')
872
+ assertEquals(list2[1], 'Spock', 'get # simple')
873
+ assertEquals(list2[int((2 if True else None) - 1)], 'Spock', 'get # order simple')
874
+ assertEquals(list2[-3], 'Kirk', 'get #-end simple')
875
+ # The order for index for #-end is addition because this will catch errors in generators where most perform the operation ... - index.
876
+ assertEquals(list2[-int(0 + 3)], 'Kirk', 'get #-end order simple')
877
+
878
+ # Tests the "get" block with create list call.
879
+ def test_get_lists_create_list():
880
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
881
+ assertEquals(['Kirk', 'Spock', 'McCoy'][0], 'Kirk', 'get first create list')
882
+ assertEquals(['Kirk', 'Spock', 'McCoy'][-1], 'McCoy', 'get last simple')
883
+ assertEquals(first_index(['Kirk', 'Spock', 'McCoy'], random.choice(['Kirk', 'Spock', 'McCoy'])) > 0, True, 'get random simple')
884
+ assertEquals(['Kirk', 'Spock', 'McCoy'][1], 'Spock', 'get # simple')
885
+ assertEquals(['Kirk', 'Spock', 'McCoy'][int((2 if True else None) - 1)], 'Spock', 'get # order simple')
886
+ assertEquals(['Kirk', 'Spock', 'McCoy'][-3], 'Kirk', 'get #-end simple')
887
+ # The order for index for #-end is addition because this will catch errors in generators where most perform the operation ... - index.
888
+ assertEquals(['Kirk', 'Spock', 'McCoy'][-int(0 + 3)], 'Kirk', 'get #-end order simple')
889
+
890
+ # Creates a list for use with the get test.
891
+ def get_star_wars():
892
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
893
+ number_of_calls = (number_of_calls if isinstance(number_of_calls, Number) else 0) + 1
894
+ return ['Kirk', 'Spock', 'McCoy']
895
+
896
+ # Tests the "get" block with a function call.
897
+ def test_get_lists_complex():
898
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
899
+ list2 = ['Kirk', 'Spock', 'McCoy']
900
+ number_of_calls = 0
901
+ assertEquals(get_star_wars()[0], 'Kirk', 'get first complex')
902
+ check_number_of_calls('get first complex')
903
+ number_of_calls = 0
904
+ assertEquals((get_star_wars() if True else None)[0], 'Kirk', 'get first order complex')
905
+ check_number_of_calls('get first order complex')
906
+ number_of_calls = 0
907
+ assertEquals(get_star_wars()[-1], 'McCoy', 'get last complex')
908
+ check_number_of_calls('get last complex')
909
+ number_of_calls = 0
910
+ assertEquals((get_star_wars() if True else None)[-1], 'McCoy', 'get last order complex')
911
+ check_number_of_calls('get last order complex')
912
+ number_of_calls = 0
913
+ assertEquals(first_index(list2, random.choice(get_star_wars())) > 0, True, 'get random complex')
914
+ check_number_of_calls('get random complex')
915
+ number_of_calls = 0
916
+ assertEquals(first_index(list2, random.choice(get_star_wars() if True else None)) > 0, True, 'get random order complex')
917
+ check_number_of_calls('get random order complex')
918
+ number_of_calls = 0
919
+ assertEquals(get_star_wars()[1], 'Spock', 'get # complex')
920
+ check_number_of_calls('get # complex')
921
+ number_of_calls = 0
922
+ assertEquals((get_star_wars() if True else None)[int((2 if True else None) - 1)], 'Spock', 'get # order complex')
923
+ check_number_of_calls('get # order complex')
924
+ number_of_calls = 0
925
+ assertEquals(get_star_wars()[-3], 'Kirk', 'get #-end complex')
926
+ check_number_of_calls('get #-end complex')
927
+ number_of_calls = 0
928
+ # The order for index for #-end is addition because this will catch errors in generators where most perform the operation ... - index.
929
+ assertEquals((get_star_wars() if True else None)[-int(0 + 3)], 'Kirk', 'get #-end order complex')
930
+ check_number_of_calls('get #-end order complex')
931
+
932
+ def lists_remove_random_item(myList):
933
+ x = int(random.random() * len(myList))
934
+ return myList.pop(x)
935
+
936
+ # Tests the "get and remove" block.
937
+ def test_getRemove():
938
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
939
+ list2 = ['Kirk', 'Spock', 'McCoy']
940
+ assertEquals(list2.pop(0), 'Kirk', 'getremove first')
941
+ assertEquals(list2, ['Spock', 'McCoy'], 'getremove first list')
942
+ list2 = ['Kirk', 'Spock', 'McCoy']
943
+ assertEquals((list2 if True else None).pop(0), 'Kirk', 'getremove first order')
944
+ assertEquals(list2, ['Spock', 'McCoy'], 'getremove first order list')
945
+ list2 = ['Kirk', 'Spock', 'McCoy']
946
+ assertEquals(list2.pop(), 'McCoy', 'getremove last')
947
+ assertEquals(list2, ['Kirk', 'Spock'], 'getremove last list')
948
+ list2 = ['Kirk', 'Spock', 'McCoy']
949
+ assertEquals((list2 if True else None).pop(), 'McCoy', 'getremove last order')
950
+ assertEquals(list2, ['Kirk', 'Spock'], 'getremove last order list')
951
+ list2 = ['Kirk', 'Spock', 'McCoy']
952
+ assertEquals(first_index(list2, lists_remove_random_item(list2)) == 0, True, 'getremove random')
953
+ assertEquals(len(list2), 2, 'getremove random list')
954
+ list2 = ['Kirk', 'Spock', 'McCoy']
955
+ assertEquals(first_index(list2, lists_remove_random_item(list2 if True else None)) == 0, True, 'getremove random order')
956
+ assertEquals(len(list2), 2, 'getremove random order list')
957
+ list2 = ['Kirk', 'Spock', 'McCoy']
958
+ assertEquals(list2.pop(1), 'Spock', 'getremove #')
959
+ assertEquals(list2, ['Kirk', 'McCoy'], 'getremove # list')
960
+ list2 = ['Kirk', 'Spock', 'McCoy']
961
+ assertEquals((list2 if True else None).pop(int((2 if True else None) - 1)), 'Spock', 'getremove # order')
962
+ assertEquals(list2, ['Kirk', 'McCoy'], 'getremove # order list')
963
+ list2 = ['Kirk', 'Spock', 'McCoy']
964
+ assertEquals(list2.pop(-3), 'Kirk', 'getremove #-end')
965
+ assertEquals(list2, ['Spock', 'McCoy'], 'getremove #-end list')
966
+ list2 = ['Kirk', 'Spock', 'McCoy']
967
+ # The order for index for #-end is addition because this will catch errors in generators where most perform the operation ... - index.
968
+ assertEquals((list2 if True else None).pop(-int(0 + 3)), 'Kirk', 'getremove #-end order')
969
+ assertEquals(list2, ['Spock', 'McCoy'], 'getremove #-end order list')
970
+
971
+ # Tests the "remove" block.
972
+ def test_remove():
973
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
974
+ list2 = ['Kirk', 'Spock', 'McCoy']
975
+ list2.pop(0)
976
+ assertEquals(list2, ['Spock', 'McCoy'], 'remove first list')
977
+ list2 = ['Kirk', 'Spock', 'McCoy']
978
+ (list2 if True else None).pop(0)
979
+ assertEquals(list2, ['Spock', 'McCoy'], 'remove first order list')
980
+ list2 = ['Kirk', 'Spock', 'McCoy']
981
+ list2.pop()
982
+ assertEquals(list2, ['Kirk', 'Spock'], 'remove last list')
983
+ list2 = ['Kirk', 'Spock', 'McCoy']
984
+ (list2 if True else None).pop()
985
+ assertEquals(list2, ['Kirk', 'Spock'], 'remove last order list')
986
+ list2 = ['Kirk', 'Spock', 'McCoy']
987
+ lists_remove_random_item(list2)
988
+ assertEquals(len(list2), 2, 'remove random list')
989
+ list2 = ['Kirk', 'Spock', 'McCoy']
990
+ lists_remove_random_item(list2 if True else None)
991
+ assertEquals(len(list2), 2, 'remove random order list')
992
+ list2 = ['Kirk', 'Spock', 'McCoy']
993
+ list2.pop(1)
994
+ assertEquals(list2, ['Kirk', 'McCoy'], 'remove # list')
995
+ list2 = ['Kirk', 'Spock', 'McCoy']
996
+ (list2 if True else None).pop(int((2 if True else None) - 1))
997
+ assertEquals(list2, ['Kirk', 'McCoy'], 'remove # order list')
998
+ list2 = ['Kirk', 'Spock', 'McCoy']
999
+ list2.pop(-3)
1000
+ assertEquals(list2, ['Spock', 'McCoy'], 'remove #-end list')
1001
+ list2 = ['Kirk', 'Spock', 'McCoy']
1002
+ # The order for index for #-end is addition because this will catch
1003
+ # errors in generators where most perform the operation ... - index.
1004
+ (list2 if True else None).pop(-int(0 + 3))
1005
+ assertEquals(list2, ['Spock', 'McCoy'], 'remove #-end order list')
1006
+
1007
+ # Tests the "set" block.
1008
+ def test_set():
1009
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
1010
+ list2 = ['Picard', 'Riker', 'Crusher']
1011
+ list2[0] = 'Jean-Luc'
1012
+ assertEquals(list2, ['Jean-Luc', 'Riker', 'Crusher'], 'set first list')
1013
+ list2 = ['Picard', 'Riker', 'Crusher']
1014
+ (list2 if True else None)[0] = 'Jean-Luc'
1015
+ assertEquals(list2, ['Jean-Luc', 'Riker', 'Crusher'], 'set first order list')
1016
+ list2 = ['Picard', 'Riker', 'Crusher']
1017
+ list2[-1] = 'Beverly'
1018
+ assertEquals(list2, ['Picard', 'Riker', 'Beverly'], 'set last list')
1019
+ list2 = ['Picard', 'Riker', 'Crusher']
1020
+ (list2 if True else None)[-1] = 'Beverly'
1021
+ assertEquals(list2, ['Picard', 'Riker', 'Beverly'], 'set last order list')
1022
+ list2 = ['Picard', 'Riker', 'Crusher']
1023
+ tmp_x = int(random.random() * len(list2))
1024
+ list2[tmp_x] = 'Data'
1025
+ assertEquals(len(list2), 3, 'set random list')
1026
+ list2 = ['Picard', 'Riker', 'Crusher']
1027
+ tmp_list = (list2 if True else None)
1028
+ tmp_x2 = int(random.random() * len(tmp_list))
1029
+ tmp_list[tmp_x2] = 'Data'
1030
+ assertEquals(len(list2), 3, 'set random order list')
1031
+ list2 = ['Picard', 'Riker', 'Crusher']
1032
+ list2[2] = 'Pulaski'
1033
+ assertEquals(list2, ['Picard', 'Riker', 'Pulaski'], 'set # list')
1034
+ list2 = ['Picard', 'Riker', 'Crusher']
1035
+ (list2 if True else None)[int((3 if True else None) - 1)] = 'Pulaski'
1036
+ assertEquals(list2, ['Picard', 'Riker', 'Pulaski'], 'set # order list')
1037
+ list2 = ['Picard', 'Riker', 'Crusher']
1038
+ list2[-1] = 'Pulaski'
1039
+ assertEquals(list2, ['Picard', 'Riker', 'Pulaski'], 'set #-end list')
1040
+ list2 = ['Picard', 'Riker', 'Crusher']
1041
+ # The order for index for #-end is addition because this will catch
1042
+ # errors in generators where most perform the operation ... - index.
1043
+ (list2 if True else None)[-int(0 + 2)] = 'Pulaski'
1044
+ assertEquals(list2, ['Picard', 'Pulaski', 'Crusher'], 'set #-end order list')
1045
+
1046
+ # Tests the "insert" block.
1047
+ def test_insert():
1048
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
1049
+ list2 = ['Picard', 'Riker', 'Crusher']
1050
+ list2.insert(0, 'Data')
1051
+ assertEquals(list2, ['Data', 'Picard', 'Riker', 'Crusher'], 'insert first list')
1052
+ list2 = ['Picard', 'Riker', 'Crusher']
1053
+ (list2 if True else None).insert(0, 'Data')
1054
+ assertEquals(list2, ['Data', 'Picard', 'Riker', 'Crusher'], 'insert first order list')
1055
+ list2 = ['Picard', 'Riker', 'Crusher']
1056
+ list2.append('Data')
1057
+ assertEquals(list2, ['Picard', 'Riker', 'Crusher', 'Data'], 'insert last list')
1058
+ list2 = ['Picard', 'Riker', 'Crusher']
1059
+ (list2 if True else None).append('Data')
1060
+ assertEquals(list2, ['Picard', 'Riker', 'Crusher', 'Data'], 'insert last order list')
1061
+ list2 = ['Picard', 'Riker', 'Crusher']
1062
+ tmp_x3 = int(random.random() * len(list2))
1063
+ list2.insert(tmp_x3, 'Data')
1064
+ assertEquals(len(list2), 4, 'insert random list')
1065
+ list2 = ['Picard', 'Riker', 'Crusher']
1066
+ tmp_list2 = (list2 if True else None)
1067
+ tmp_x4 = int(random.random() * len(tmp_list2))
1068
+ tmp_list2.insert(tmp_x4, 'Data')
1069
+ assertEquals(len(list2), 4, 'insert random order list')
1070
+ list2 = ['Picard', 'Riker', 'Crusher']
1071
+ list2.insert(2, 'Data')
1072
+ assertEquals(list2, ['Picard', 'Riker', 'Data', 'Crusher'], 'insert # list')
1073
+ list2 = ['Picard', 'Riker', 'Crusher']
1074
+ (list2 if True else None).insert(int((3 if True else None) - 1), 'Data')
1075
+ assertEquals(list2, ['Picard', 'Riker', 'Data', 'Crusher'], 'insert # order list')
1076
+ list2 = ['Picard', 'Riker', 'Crusher']
1077
+ list2.insert(-1, 'Data')
1078
+ assertEquals(list2, ['Picard', 'Riker', 'Data', 'Crusher'], 'insert #-end list')
1079
+ list2 = ['Picard', 'Riker', 'Crusher']
1080
+ # The order for index for #-end is addition because this will catch
1081
+ # errors in generators where most perform the operation ... - index.
1082
+ (list2 if True else None).insert(-int(0 + 2), 'Data')
1083
+ assertEquals(list2, ['Picard', 'Data', 'Riker', 'Crusher'], 'insert #-end order list')
1084
+
1085
+ # Tests the "get sub-list" block with a variable.
1086
+ def test_sublist_simple():
1087
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
1088
+ list2 = ['Columbia', 'Challenger', 'Discovery', 'Atlantis', 'Endeavour']
1089
+ assertEquals(list2[1 : 3], ['Challenger', 'Discovery'], 'sublist # simple')
1090
+ assertEquals(list2[int((2 if True else None) - 1) : int(3 if True else None)], ['Challenger', 'Discovery'], 'sublist # simple order')
1091
+ assertEquals(list2[-3 : -1], ['Discovery', 'Atlantis'], 'sublist #-end simple')
1092
+ # The order for index for #-end is addition because this will catch errors in generators where most perform the operation ... - index.
1093
+ assertEquals(list2[-int(0 + 3) : -int((0 + 2) - 1) or sys.maxsize], ['Discovery', 'Atlantis'], 'sublist #-end simple order')
1094
+ assertEquals(list2[ : ], list2, 'sublist first-last simple')
1095
+ changing_list = ['Columbia', 'Challenger', 'Discovery', 'Atlantis', 'Endeavour']
1096
+ list_copy = changing_list[ : ]
1097
+ lists_remove_random_item(changing_list)
1098
+ assertEquals(list_copy, list2, 'sublist first-last simple copy check')
1099
+ assertEquals(list2[1 : -1], ['Challenger', 'Discovery', 'Atlantis'], 'sublist # #-end simple')
1100
+ assertEquals(list2[-3 : 4], ['Discovery', 'Atlantis'], 'sublist #-end # simple')
1101
+ assertEquals(list2[ : 4], ['Columbia', 'Challenger', 'Discovery', 'Atlantis'], 'sublist first # simple')
1102
+ assertEquals(list2[ : -3], ['Columbia', 'Challenger'], 'sublist first #-end simple')
1103
+ assertEquals(list2[3 : ], ['Atlantis', 'Endeavour'], 'sublist # last simple')
1104
+ assertEquals(list2[-4 : ], ['Challenger', 'Discovery', 'Atlantis', 'Endeavour'], 'sublist #-end last simple')
1105
+ assertEquals(list2[ : ], list2, 'sublist all with # #-end simple')
1106
+ assertEquals(list2[-5 : 5], list2, 'sublist all with #-end # simple')
1107
+ # Checks that the whole list is properly retrieved even if the value for start and end is not a simple number. This is especially important in generators where sublist uses [x:length - y] for # #-end.
1108
+ assertEquals(list2[int((0 + 1) - 1) : -int((0 + 1) - 1) or sys.maxsize], list2, 'sublist all with # #-end math simple')
1109
+
1110
+ # Creates a list for use with the sublist test.
1111
+ def get_space_shuttles():
1112
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
1113
+ number_of_calls = (number_of_calls if isinstance(number_of_calls, Number) else 0) + 1
1114
+ return ['Columbia', 'Challenger', 'Discovery', 'Atlantis', 'Endeavour']
1115
+
1116
+ # Tests the "get sub-list" block with a function call.
1117
+ def test_sublist_complex():
1118
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
1119
+ number_of_calls = 0
1120
+ assertEquals(get_space_shuttles()[1 : 3], ['Challenger', 'Discovery'], 'sublist # start complex')
1121
+ check_number_of_calls('sublist # start complex')
1122
+ number_of_calls = 0
1123
+ assertEquals((get_space_shuttles() if True else None)[int((2 if True else None) - 1) : int(3 if True else None)], ['Challenger', 'Discovery'], 'sublist # start order complex')
1124
+ check_number_of_calls('sublist # start order complex')
1125
+ number_of_calls = 0
1126
+ # The order for index for #-end is addition because this will catch errors in generators where most perform the operation ... - index.
1127
+ assertEquals(get_space_shuttles()[-3 : -1], ['Discovery', 'Atlantis'], 'sublist # end complex')
1128
+ assertEquals(number_of_calls, 1, 'sublist # end complex number of calls')
1129
+ number_of_calls = 0
1130
+ assertEquals((get_space_shuttles() if True else None)[-int(0 + 3) : -int((0 + 2) - 1) or sys.maxsize], ['Discovery', 'Atlantis'], 'sublist # end order complex')
1131
+ check_number_of_calls('sublist # end order complex')
1132
+ number_of_calls = 0
1133
+ assertEquals(get_space_shuttles()[ : ], list2, 'sublist first-last complex')
1134
+ check_number_of_calls('sublist first-last complex')
1135
+ number_of_calls = 0
1136
+ assertEquals(get_space_shuttles()[1 : -1], ['Challenger', 'Discovery', 'Atlantis'], 'sublist # #-end complex')
1137
+ check_number_of_calls('sublist # #-end complex')
1138
+ number_of_calls = 0
1139
+ assertEquals(get_space_shuttles()[-3 : 4], ['Discovery', 'Atlantis'], 'sublist #-end # complex')
1140
+ check_number_of_calls('sublist #-end # complex')
1141
+ number_of_calls = 0
1142
+ assertEquals(get_space_shuttles()[ : 4], ['Columbia', 'Challenger', 'Discovery', 'Atlantis'], 'sublist first # complex')
1143
+ check_number_of_calls('sublist first # complex')
1144
+ number_of_calls = 0
1145
+ assertEquals(get_space_shuttles()[ : -3], ['Columbia', 'Challenger'], 'sublist first #-end complex')
1146
+ check_number_of_calls('sublist first #-end complex')
1147
+ number_of_calls = 0
1148
+ assertEquals(get_space_shuttles()[3 : ], ['Atlantis', 'Endeavour'], 'sublist # last complex')
1149
+ check_number_of_calls('sublist # last complex')
1150
+ number_of_calls = 0
1151
+ assertEquals(get_space_shuttles()[-4 : ], ['Challenger', 'Discovery', 'Atlantis', 'Endeavour'], 'sublist #-end last simple')
1152
+ check_number_of_calls('sublist #-end last simple')
1153
+ number_of_calls = 0
1154
+ assertEquals(get_space_shuttles()[ : ], list2, 'sublist all with # #-end complex')
1155
+ check_number_of_calls('sublist all with # #-end complex')
1156
+ number_of_calls = 0
1157
+ assertEquals(get_space_shuttles()[-5 : 5], list2, 'sublist all with #-end # complex')
1158
+ check_number_of_calls('sublist all with #-end # complex')
1159
+ number_of_calls = 0
1160
+ # Checks that the whole list is properly retrieved even if the value for start and end is not a simple number. This is especially important in generators where sublist uses [x:length - y] for # #-end.
1161
+ assertEquals(get_space_shuttles()[int((0 + 1) - 1) : -int((0 + 1) - 1) or sys.maxsize], list2, 'sublist all with # #-end math complex')
1162
+ check_number_of_calls('sublist all with # #-end math complex')
1163
+
1164
+ # Tests the "join" block.
1165
+ def test_join():
1166
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
1167
+ list2 = ['Vulcan', 'Klingon', 'Borg']
1168
+ assertEquals(','.join(list2), 'Vulcan,Klingon,Borg', 'join')
1169
+ assertEquals(','.join(list2 if True else None), 'Vulcan,Klingon,Borg', 'join order')
1170
+
1171
+ # Tests the "split" block.
1172
+ def test_split():
1173
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
1174
+ text = 'Vulcan,Klingon,Borg'
1175
+ assertEquals(text.split(','), ['Vulcan', 'Klingon', 'Borg'], 'split')
1176
+ assertEquals((text if True else None).split(','), ['Vulcan', 'Klingon', 'Borg'], 'split order')
1177
+
1178
+ def lists_sort(my_list, type, reverse):
1179
+ def try_float(s):
1180
+ try:
1181
+ return float(s)
1182
+ except:
1183
+ return 0
1184
+ key_funcs = {
1185
+ "NUMERIC": try_float,
1186
+ "TEXT": str,
1187
+ "IGNORE_CASE": lambda s: str(s).lower()
1188
+ }
1189
+ key_func = key_funcs[type]
1190
+ list_cpy = list(my_list)
1191
+ return sorted(list_cpy, key=key_func, reverse=reverse)
1192
+
1193
+ # Tests the "alphabetic sort" block.
1194
+ def test_sort_alphabetic():
1195
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
1196
+ list2 = ['Vulcan', 'klingon', 'Borg']
1197
+ assertEquals(lists_sort(list2, "TEXT", False), ['Borg', 'Vulcan', 'klingon'], 'sort alphabetic ascending')
1198
+ assertEquals(lists_sort(list2 if True else None, "TEXT", False), ['Borg', 'Vulcan', 'klingon'], 'sort alphabetic ascending order')
1199
+
1200
+ # Tests the "alphabetic sort ignore case" block.
1201
+ def test_sort_ignoreCase():
1202
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
1203
+ list2 = ['Vulcan', 'klingon', 'Borg']
1204
+ assertEquals(lists_sort(list2, "IGNORE_CASE", False), ['Borg', 'klingon', 'Vulcan'], 'sort ignore case ascending')
1205
+ assertEquals(lists_sort(list2 if True else None, "IGNORE_CASE", False), ['Borg', 'klingon', 'Vulcan'], 'sort ignore case ascending order')
1206
+
1207
+ # Tests the "numeric sort" block.
1208
+ def test_sort_numeric():
1209
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
1210
+ list2 = [8, 18, -1]
1211
+ assertEquals(lists_sort(list2, "NUMERIC", True), [18, 8, -1], 'sort numeric descending')
1212
+ assertEquals(lists_sort(list2 if True else None, "NUMERIC", True), [18, 8, -1], 'sort numeric descending order')
1213
+
1214
+ # Tests the "list reverse" block.
1215
+ def test_lists_reverse():
1216
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
1217
+ list2 = [8, 18, -1, 64]
1218
+ assertEquals(list(reversed(list2)), [64, -1, 18, 8], 'reverse a copy')
1219
+ assertEquals(list2, [8, 18, -1, 64], 'reverse a copy original')
1220
+ list2 = []
1221
+ assertEquals(list(reversed(list2)), [], 'empty list')
1222
+
1223
+ # Describe this function...
1224
+ def test_procedure():
1225
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
1226
+ procedure_1(8, 2)
1227
+ assertEquals(proc_z, 4, 'procedure with global')
1228
+ proc_w = False
1229
+ procedure_2(False)
1230
+ assertEquals(proc_w, True, 'procedure no return')
1231
+ proc_w = False
1232
+ procedure_2(True)
1233
+ assertEquals(proc_w, False, 'procedure return')
1234
+
1235
+ # Describe this function...
1236
+ def procedure_1(proc_x, proc_y):
1237
+ global test_name, naked, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
1238
+ proc_z = proc_x / proc_y
1239
+
1240
+ # Describe this function...
1241
+ def procedure_2(proc_x):
1242
+ global test_name, naked, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
1243
+ if proc_x:
1244
+ return
1245
+ proc_w = True
1246
+
1247
+ # Describe this function...
1248
+ def test_function():
1249
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
1250
+ assertEquals(function_1(2, 3), -1, 'function with arguments')
1251
+ assertEquals(func_z, 'side effect', 'function with side effect')
1252
+ func_a = 'unchanged'
1253
+ func_c = 'global'
1254
+ assertEquals(function_2(2), '3global', 'function with global')
1255
+ assertEquals(func_a, 'unchanged', 'function with scope')
1256
+ assertEquals(function_3(True), True, 'function return')
1257
+ assertEquals(function_3(False), False, 'function no return')
1258
+
1259
+ # Describe this function...
1260
+ def function_1(func_x, func_y):
1261
+ global test_name, naked, proc_x, proc_y, func_a, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
1262
+ func_z = 'side effect'
1263
+ return func_x - func_y
1264
+
1265
+ # Describe this function...
1266
+ def function_2(func_a):
1267
+ global test_name, naked, proc_x, proc_y, func_x, func_y, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
1268
+ func_a = (func_a if isinstance(func_a, Number) else 0) + 1
1269
+ return str(func_a) + str(func_c)
1270
+
1271
+ # Describe this function...
1272
+ def function_3(func_a):
1273
+ global test_name, naked, proc_x, proc_y, func_x, func_y, n, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
1274
+ if func_a:
1275
+ return True
1276
+ return False
1277
+
1278
+ # Describe this function...
1279
+ def recurse(n):
1280
+ global test_name, naked, proc_x, proc_y, func_x, func_y, func_a, ok, log, count, varToChange, rand, item, text, number_of_calls, list2, proc_z, func_z, x, proc_w, func_c, if2, loglist, changing_list, list_copy, unittestResults
1281
+ if n > 0:
1282
+ text = ''.join([str(x4) for x4 in [recurse(n - 1), n, recurse(n - 1)]])
1283
+ else:
1284
+ text = '-'
1285
+ return text
1286
+
1287
+
1288
+ unittestResults = []
1289
+ print('\n====================\n\nRunning suite: Logic')
1290
+ assertEquals(True, True, 'True')
1291
+ assertEquals(False, False, 'False')
1292
+ assertEquals(not False, True, 'Not true')
1293
+ assertEquals(not True, False, 'Not false')
1294
+ test_if()
1295
+ test_ifelse()
1296
+ test_equalities()
1297
+ test_and()
1298
+ test_or()
1299
+ test_ternary()
1300
+ print(unittest_report())
1301
+ unittestResults = None
1302
+
1303
+ unittestResults = []
1304
+ print('\n====================\n\nRunning suite: Loops 1')
1305
+ test_repeat()
1306
+ test_repeat_ext()
1307
+ test_while()
1308
+ test_foreach()
1309
+ print(unittest_report())
1310
+ unittestResults = None
1311
+
1312
+ unittestResults = []
1313
+ print('\n====================\n\nRunning suite: Loops 2')
1314
+ test_count_loops()
1315
+ test_count_by()
1316
+ print(unittest_report())
1317
+ unittestResults = None
1318
+
1319
+ unittestResults = []
1320
+ print('\n====================\n\nRunning suite: Loops 3')
1321
+ test_break()
1322
+ test_continue()
1323
+ print(unittest_report())
1324
+ unittestResults = None
1325
+
1326
+ unittestResults = []
1327
+ print('\n====================\n\nRunning suite: Math')
1328
+ test_arithmetic()
1329
+ test_single()
1330
+ test_trig()
1331
+ test_constant()
1332
+ test_change()
1333
+ test_number_properties()
1334
+ test_round()
1335
+ test_operations_on_list()
1336
+ test_constraint()
1337
+ test_mod()
1338
+ test_random_integer()
1339
+ test_random_fraction()
1340
+ test_atan2()
1341
+ print(unittest_report())
1342
+ unittestResults = None
1343
+
1344
+ unittestResults = []
1345
+ print('\n====================\n\nRunning suite: Text')
1346
+ test_text_length()
1347
+ test_empty_text()
1348
+ test_create_text()
1349
+ test_append()
1350
+ test_find_text_simple()
1351
+ test_find_text_complex()
1352
+ test_get_text_simple()
1353
+ test_get_text_complex()
1354
+ test_substring_simple()
1355
+ test_substring_complex()
1356
+ test_case()
1357
+ test_trim()
1358
+ test_count_text()
1359
+ test_text_reverse()
1360
+ test_replace()
1361
+ print(unittest_report())
1362
+ unittestResults = None
1363
+
1364
+ unittestResults = []
1365
+ print('\n====================\n\nRunning suite: Lists')
1366
+ test_create_lists()
1367
+ test_lists_empty()
1368
+ test_lists_length()
1369
+ test_find_lists_simple()
1370
+ test_find_lists_complex()
1371
+ test_get_lists_simple()
1372
+ test_get_lists_create_list()
1373
+ test_get_lists_complex()
1374
+ test_getRemove()
1375
+ test_remove()
1376
+ test_set()
1377
+ test_insert()
1378
+ test_sublist_simple()
1379
+ test_sublist_complex()
1380
+ test_join()
1381
+ test_split()
1382
+ test_sort_alphabetic()
1383
+ test_sort_ignoreCase()
1384
+ test_sort_numeric()
1385
+ test_lists_reverse()
1386
+ print(unittest_report())
1387
+ unittestResults = None
1388
+
1389
+ unittestResults = []
1390
+ print('\n====================\n\nRunning suite: Variables')
1391
+ item = 123
1392
+ assertEquals(item, 123, 'variable')
1393
+ if2 = 123
1394
+ assertEquals(if2, 123, 'reserved variable')
1395
+ print(unittest_report())
1396
+ unittestResults = None
1397
+
1398
+ # Intentionally non-connected variable.
1399
+ naked
1400
+
1401
+ unittestResults = []
1402
+ print('\n====================\n\nRunning suite: Functions')
1403
+ test_procedure()
1404
+ test_function()
1405
+ assertEquals(recurse(3), '-1-2-1-3-1-2-1-', 'test recurse')
1406
+ print(unittest_report())
1407
+ unittestResults = None