blockly 12.4.0 → 12.5.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 (1630) hide show
  1. package/blockly.min.js +2751 -0
  2. package/blockly.mjs +163 -0
  3. package/blockly_compressed.js +1825 -0
  4. package/blockly_compressed.js.map +1 -0
  5. package/blocks.js +4 -0
  6. package/blocks.mjs +12 -0
  7. package/blocks_compressed.js +194 -0
  8. package/blocks_compressed.js.map +1 -0
  9. package/core/any_aliases.d.ts +7 -0
  10. package/core/block.d.ts +1006 -0
  11. package/core/block_animations.d.ts +34 -0
  12. package/core/block_flyout_inflater.d.ts +94 -0
  13. package/core/block_svg.d.ts +737 -0
  14. package/core/blockly.d.ts +286 -0
  15. package/core/blockly_options.d.ts +70 -0
  16. package/core/blocks.d.ts +17 -0
  17. package/core/browser_events.d.ts +88 -0
  18. package/core/bubbles/bubble.d.ts +228 -0
  19. package/core/bubbles/mini_workspace_bubble.d.ts +84 -0
  20. package/core/bubbles/text_bubble.d.ts +38 -0
  21. package/core/bubbles/textinput_bubble.d.ts +102 -0
  22. package/core/bubbles.d.ts +11 -0
  23. package/core/bump_objects.d.ts +37 -0
  24. package/core/button_flyout_inflater.d.ts +42 -0
  25. package/core/clipboard/block_paster.d.ts +34 -0
  26. package/core/clipboard/registry.d.ts +21 -0
  27. package/core/clipboard/workspace_comment_paster.d.ts +19 -0
  28. package/core/clipboard.d.ts +103 -0
  29. package/core/comments/collapse_comment_bar_button.d.ts +52 -0
  30. package/core/comments/comment_bar_button.d.ts +62 -0
  31. package/core/comments/comment_editor.d.ts +62 -0
  32. package/core/comments/comment_view.d.ts +213 -0
  33. package/core/comments/delete_comment_bar_button.d.ts +52 -0
  34. package/core/comments/rendered_workspace_comment.d.ts +121 -0
  35. package/core/comments/workspace_comment.d.ts +107 -0
  36. package/core/comments.d.ts +13 -0
  37. package/core/common.d.ts +163 -0
  38. package/core/component_manager.d.ts +112 -0
  39. package/core/config.d.ts +24 -0
  40. package/core/connection.d.ts +291 -0
  41. package/core/connection_checker.d.ts +85 -0
  42. package/core/connection_db.d.ts +100 -0
  43. package/core/connection_type.d.ts +15 -0
  44. package/core/constants.d.ts +19 -0
  45. package/core/contextmenu.d.ts +58 -0
  46. package/core/contextmenu_items.d.ts +73 -0
  47. package/core/contextmenu_registry.d.ts +173 -0
  48. package/core/css.d.ts +25 -0
  49. package/core/delete_area.d.ts +48 -0
  50. package/core/dialog.d.ts +82 -0
  51. package/core/drag_target.d.ts +75 -0
  52. package/core/dragging/block_drag_strategy.d.ts +130 -0
  53. package/core/dragging/bubble_drag_strategy.d.ts +20 -0
  54. package/core/dragging/comment_drag_strategy.d.ts +26 -0
  55. package/core/dragging/dragger.d.ts +49 -0
  56. package/core/dragging.d.ts +11 -0
  57. package/core/dropdowndiv.d.ts +208 -0
  58. package/core/events/events.d.ts +72 -0
  59. package/core/events/events_abstract.d.ts +72 -0
  60. package/core/events/events_block_base.d.ts +46 -0
  61. package/core/events/events_block_change.d.ts +100 -0
  62. package/core/events/events_block_create.d.ts +59 -0
  63. package/core/events/events_block_delete.d.ts +62 -0
  64. package/core/events/events_block_drag.d.ts +61 -0
  65. package/core/events/events_block_field_intermediate_change.d.ts +71 -0
  66. package/core/events/events_block_move.d.ts +115 -0
  67. package/core/events/events_bubble_open.d.ts +62 -0
  68. package/core/events/events_click.d.ts +64 -0
  69. package/core/events/events_comment_base.d.ts +55 -0
  70. package/core/events/events_comment_change.d.ts +64 -0
  71. package/core/events/events_comment_collapse.d.ts +40 -0
  72. package/core/events/events_comment_create.d.ts +57 -0
  73. package/core/events/events_comment_delete.d.ts +57 -0
  74. package/core/events/events_comment_drag.d.ts +51 -0
  75. package/core/events/events_comment_move.d.ts +93 -0
  76. package/core/events/events_comment_resize.d.ts +68 -0
  77. package/core/events/events_selected.d.ts +53 -0
  78. package/core/events/events_theme_change.d.ts +43 -0
  79. package/core/events/events_toolbox_item_select.d.ts +49 -0
  80. package/core/events/events_trashcan_open.d.ts +47 -0
  81. package/core/events/events_ui_base.d.ts +32 -0
  82. package/core/events/events_var_base.d.ts +46 -0
  83. package/core/events/events_var_create.d.ts +55 -0
  84. package/core/events/events_var_delete.d.ts +50 -0
  85. package/core/events/events_var_rename.d.ts +51 -0
  86. package/core/events/events_var_type_change.d.ts +55 -0
  87. package/core/events/events_viewport.d.ts +67 -0
  88. package/core/events/predicates.d.ts +87 -0
  89. package/core/events/type.d.ts +81 -0
  90. package/core/events/utils.d.ts +211 -0
  91. package/core/events/workspace_events.d.ts +23 -0
  92. package/core/extensions.d.ts +99 -0
  93. package/core/field.d.ts +724 -0
  94. package/core/field_checkbox.d.ts +156 -0
  95. package/core/field_dropdown.d.ts +295 -0
  96. package/core/field_image.d.ts +148 -0
  97. package/core/field_input.d.ts +293 -0
  98. package/core/field_label.d.ts +80 -0
  99. package/core/field_label_serializable.d.ts +50 -0
  100. package/core/field_number.d.ts +194 -0
  101. package/core/field_registry.d.ts +83 -0
  102. package/core/field_textinput.d.ts +78 -0
  103. package/core/field_variable.d.ts +261 -0
  104. package/core/flyout_base.d.ts +453 -0
  105. package/core/flyout_button.d.ts +140 -0
  106. package/core/flyout_horizontal.d.ts +87 -0
  107. package/core/flyout_item.d.ts +26 -0
  108. package/core/flyout_metrics_manager.d.ts +46 -0
  109. package/core/flyout_navigator.d.ts +11 -0
  110. package/core/flyout_separator.d.ts +64 -0
  111. package/core/flyout_vertical.d.ts +88 -0
  112. package/core/focus_manager.d.ts +266 -0
  113. package/core/generator.d.ts +279 -0
  114. package/core/gesture.d.ts +449 -0
  115. package/core/grid.d.ts +124 -0
  116. package/core/icons/comment_icon.d.ts +134 -0
  117. package/core/icons/exceptions.d.ts +17 -0
  118. package/core/icons/icon.d.ts +84 -0
  119. package/core/icons/icon_types.d.ts +25 -0
  120. package/core/icons/mutator_icon.d.ts +96 -0
  121. package/core/icons/registry.d.ts +23 -0
  122. package/core/icons/warning_icon.d.ts +77 -0
  123. package/core/icons.d.ts +14 -0
  124. package/core/inject.d.ts +16 -0
  125. package/core/inputs/align.d.ts +14 -0
  126. package/core/inputs/dummy_input.d.ts +20 -0
  127. package/core/inputs/end_row_input.d.ts +25 -0
  128. package/core/inputs/input.d.ts +147 -0
  129. package/core/inputs/input_types.d.ts +16 -0
  130. package/core/inputs/statement_input.d.ts +22 -0
  131. package/core/inputs/value_input.d.ts +20 -0
  132. package/core/inputs.d.ts +14 -0
  133. package/core/insertion_marker_previewer.d.ts +67 -0
  134. package/core/interfaces/i_autohideable.d.ts +21 -0
  135. package/core/interfaces/i_bounded_element.d.ts +27 -0
  136. package/core/interfaces/i_bubble.d.ts +55 -0
  137. package/core/interfaces/i_collapsible_toolbox_item.d.ts +28 -0
  138. package/core/interfaces/i_comment_icon.d.ts +24 -0
  139. package/core/interfaces/i_component.d.ts +17 -0
  140. package/core/interfaces/i_connection_checker.d.ts +75 -0
  141. package/core/interfaces/i_connection_previewer.d.ts +39 -0
  142. package/core/interfaces/i_contextmenu.d.ts +16 -0
  143. package/core/interfaces/i_copyable.d.ts +30 -0
  144. package/core/interfaces/i_deletable.d.ts +23 -0
  145. package/core/interfaces/i_delete_area.d.ts +25 -0
  146. package/core/interfaces/i_drag_target.d.ts +59 -0
  147. package/core/interfaces/i_draggable.d.ts +56 -0
  148. package/core/interfaces/i_dragger.d.ts +32 -0
  149. package/core/interfaces/i_flyout.d.ts +159 -0
  150. package/core/interfaces/i_flyout_inflater.d.ts +48 -0
  151. package/core/interfaces/i_focusable_node.d.ts +105 -0
  152. package/core/interfaces/i_focusable_tree.d.ts +125 -0
  153. package/core/interfaces/i_has_bubble.d.ts +27 -0
  154. package/core/interfaces/i_icon.d.ts +84 -0
  155. package/core/interfaces/i_keyboard_accessible.d.ts +19 -0
  156. package/core/interfaces/i_legacy_procedure_blocks.d.ts +34 -0
  157. package/core/interfaces/i_metrics_manager.d.ts +129 -0
  158. package/core/interfaces/i_movable.d.ts +17 -0
  159. package/core/interfaces/i_navigation_policy.d.ts +63 -0
  160. package/core/interfaces/i_observable.d.ts +21 -0
  161. package/core/interfaces/i_parameter_model.d.ts +44 -0
  162. package/core/interfaces/i_paster.d.ts +15 -0
  163. package/core/interfaces/i_positionable.d.ts +29 -0
  164. package/core/interfaces/i_procedure_block.d.ts +16 -0
  165. package/core/interfaces/i_procedure_map.d.ts +16 -0
  166. package/core/interfaces/i_procedure_model.d.ts +59 -0
  167. package/core/interfaces/i_registrable.d.ts +11 -0
  168. package/core/interfaces/i_rendered_element.d.ts +16 -0
  169. package/core/interfaces/i_selectable.d.ts +26 -0
  170. package/core/interfaces/i_selectable_toolbox_item.d.ts +51 -0
  171. package/core/interfaces/i_serializable.d.ts +24 -0
  172. package/core/interfaces/i_serializer.d.ts +45 -0
  173. package/core/interfaces/i_styleable.d.ts +23 -0
  174. package/core/interfaces/i_toolbox.d.ts +102 -0
  175. package/core/interfaces/i_toolbox_item.d.ts +71 -0
  176. package/core/interfaces/i_variable_backed_parameter_model.d.ts +17 -0
  177. package/core/interfaces/i_variable_map.d.ts +48 -0
  178. package/core/interfaces/i_variable_model.d.ts +36 -0
  179. package/core/internal_constants.d.ts +34 -0
  180. package/core/keyboard_nav/block_comment_navigation_policy.d.ts +56 -0
  181. package/core/keyboard_nav/block_navigation_policy.d.ts +84 -0
  182. package/core/keyboard_nav/comment_bar_button_navigation_policy.d.ts +56 -0
  183. package/core/keyboard_nav/comment_editor_navigation_policy.d.ts +34 -0
  184. package/core/keyboard_nav/connection_navigation_policy.d.ts +67 -0
  185. package/core/keyboard_nav/field_navigation_policy.d.ts +56 -0
  186. package/core/keyboard_nav/flyout_button_navigation_policy.d.ts +56 -0
  187. package/core/keyboard_nav/flyout_navigation_policy.d.ts +65 -0
  188. package/core/keyboard_nav/flyout_separator_navigation_policy.d.ts +33 -0
  189. package/core/keyboard_nav/icon_navigation_policy.d.ts +56 -0
  190. package/core/keyboard_nav/line_cursor.d.ts +187 -0
  191. package/core/keyboard_nav/marker.d.ts +53 -0
  192. package/core/keyboard_nav/workspace_comment_navigation_policy.d.ts +56 -0
  193. package/core/keyboard_nav/workspace_navigation_policy.d.ts +56 -0
  194. package/core/keyboard_navigation_controller.d.ts +48 -0
  195. package/core/label_flyout_inflater.d.ts +42 -0
  196. package/core/layer_manager.d.ts +101 -0
  197. package/core/layers.d.ts +16 -0
  198. package/core/main.d.ts +7 -0
  199. package/core/marker_manager.d.ts +72 -0
  200. package/core/menu.d.ts +170 -0
  201. package/core/menu_separator.d.ts +25 -0
  202. package/core/menuitem.d.ts +147 -0
  203. package/core/metrics_manager.d.ts +221 -0
  204. package/core/msg.d.ts +24 -0
  205. package/core/names.d.ts +139 -0
  206. package/core/navigator.d.ts +65 -0
  207. package/core/observable_procedure_map.d.ts +34 -0
  208. package/core/options.d.ts +148 -0
  209. package/core/positionable_helpers.d.ts +89 -0
  210. package/core/procedures.d.ts +108 -0
  211. package/core/registry.d.ts +158 -0
  212. package/core/render_management.d.ts +34 -0
  213. package/core/rendered_connection.d.ts +262 -0
  214. package/core/renderers/common/block_rendering.d.ts +63 -0
  215. package/core/renderers/common/constants.d.ts +454 -0
  216. package/core/renderers/common/drawer.d.ts +156 -0
  217. package/core/renderers/common/i_path_object.d.ts +88 -0
  218. package/core/renderers/common/info.d.ts +201 -0
  219. package/core/renderers/common/path_object.d.ts +130 -0
  220. package/core/renderers/common/renderer.d.ts +141 -0
  221. package/core/renderers/geras/constants.d.ts +22 -0
  222. package/core/renderers/geras/drawer.d.ts +44 -0
  223. package/core/renderers/geras/geras.d.ts +17 -0
  224. package/core/renderers/geras/highlight_constants.d.ts +100 -0
  225. package/core/renderers/geras/highlighter.d.ts +96 -0
  226. package/core/renderers/geras/info.d.ts +45 -0
  227. package/core/renderers/geras/measurables/inline_input.d.ts +22 -0
  228. package/core/renderers/geras/measurables/statement_input.d.ts +22 -0
  229. package/core/renderers/geras/path_object.d.ts +42 -0
  230. package/core/renderers/geras/renderer.d.ts +77 -0
  231. package/core/renderers/measurables/base.d.ts +26 -0
  232. package/core/renderers/measurables/bottom_row.d.ts +58 -0
  233. package/core/renderers/measurables/connection.d.ts +25 -0
  234. package/core/renderers/measurables/external_value_input.d.ts +25 -0
  235. package/core/renderers/measurables/field.d.ts +28 -0
  236. package/core/renderers/measurables/hat.d.ts +19 -0
  237. package/core/renderers/measurables/icon.d.ts +25 -0
  238. package/core/renderers/measurables/in_row_spacer.d.ts +20 -0
  239. package/core/renderers/measurables/inline_input.d.ts +22 -0
  240. package/core/renderers/measurables/input_connection.d.ts +28 -0
  241. package/core/renderers/measurables/input_row.d.ts +26 -0
  242. package/core/renderers/measurables/jagged_edge.d.ts +19 -0
  243. package/core/renderers/measurables/next_connection.d.ts +22 -0
  244. package/core/renderers/measurables/output_connection.d.ts +24 -0
  245. package/core/renderers/measurables/previous_connection.d.ts +22 -0
  246. package/core/renderers/measurables/round_corner.d.ts +20 -0
  247. package/core/renderers/measurables/row.d.ts +124 -0
  248. package/core/renderers/measurables/spacer_row.d.ts +27 -0
  249. package/core/renderers/measurables/square_corner.d.ts +20 -0
  250. package/core/renderers/measurables/statement_input.d.ts +21 -0
  251. package/core/renderers/measurables/top_row.d.ts +53 -0
  252. package/core/renderers/measurables/types.d.ts +258 -0
  253. package/core/renderers/thrasos/info.d.ts +37 -0
  254. package/core/renderers/thrasos/renderer.d.ts +28 -0
  255. package/core/renderers/thrasos/thrasos.d.ts +10 -0
  256. package/core/renderers/zelos/constants.d.ts +165 -0
  257. package/core/renderers/zelos/drawer.d.ts +51 -0
  258. package/core/renderers/zelos/info.d.ts +89 -0
  259. package/core/renderers/zelos/measurables/bottom_row.d.ts +26 -0
  260. package/core/renderers/zelos/measurables/inputs.d.ts +21 -0
  261. package/core/renderers/zelos/measurables/row_elements.d.ts +20 -0
  262. package/core/renderers/zelos/measurables/top_row.d.ts +28 -0
  263. package/core/renderers/zelos/path_object.d.ts +76 -0
  264. package/core/renderers/zelos/renderer.d.ts +64 -0
  265. package/core/renderers/zelos/zelos.d.ts +17 -0
  266. package/core/scrollbar.d.ts +348 -0
  267. package/core/scrollbar_pair.d.ts +121 -0
  268. package/core/separator_flyout_inflater.d.ts +57 -0
  269. package/core/serialization/blocks.d.ts +138 -0
  270. package/core/serialization/exceptions.d.ts +81 -0
  271. package/core/serialization/priorities.d.ts +20 -0
  272. package/core/serialization/procedures.d.ts +97 -0
  273. package/core/serialization/registry.d.ts +21 -0
  274. package/core/serialization/variables.d.ts +38 -0
  275. package/core/serialization/workspace_comments.d.ts +45 -0
  276. package/core/serialization/workspaces.d.ts +29 -0
  277. package/core/serialization.d.ts +19 -0
  278. package/core/shortcut_items.d.ts +59 -0
  279. package/core/shortcut_registry.d.ts +236 -0
  280. package/core/sprites.d.ts +15 -0
  281. package/core/theme/classic.d.ts +12 -0
  282. package/core/theme/themes.d.ts +9 -0
  283. package/core/theme/zelos.d.ts +11 -0
  284. package/core/theme.d.ts +151 -0
  285. package/core/theme_manager.d.ts +92 -0
  286. package/core/toast.d.ts +74 -0
  287. package/core/toolbox/category.d.ts +265 -0
  288. package/core/toolbox/collapsible_category.d.ts +99 -0
  289. package/core/toolbox/separator.d.ts +40 -0
  290. package/core/toolbox/toolbox.d.ts +419 -0
  291. package/core/toolbox/toolbox_item.d.ts +109 -0
  292. package/core/tooltip.d.ts +118 -0
  293. package/core/touch.d.ts +72 -0
  294. package/core/trashcan.d.ts +212 -0
  295. package/core/utils/aria.d.ts +69 -0
  296. package/core/utils/array.d.ts +15 -0
  297. package/core/utils/colour.d.ts +102 -0
  298. package/core/utils/coordinate.d.ts +87 -0
  299. package/core/utils/deprecation.d.ts +18 -0
  300. package/core/utils/dom.d.ts +154 -0
  301. package/core/utils/drag.d.ts +33 -0
  302. package/core/utils/focusable_tree_traverser.d.ts +53 -0
  303. package/core/utils/idgenerator.d.ts +33 -0
  304. package/core/utils/keycodes.d.ts +137 -0
  305. package/core/utils/math.d.ts +31 -0
  306. package/core/utils/metrics.d.ts +64 -0
  307. package/core/utils/object.d.ts +17 -0
  308. package/core/utils/parsing.d.ts +52 -0
  309. package/core/utils/rect.d.ts +82 -0
  310. package/core/utils/size.d.ts +44 -0
  311. package/core/utils/string.d.ts +46 -0
  312. package/core/utils/style.d.ts +89 -0
  313. package/core/utils/svg.d.ts +75 -0
  314. package/core/utils/svg_math.d.ts +64 -0
  315. package/core/utils/svg_paths.d.ts +103 -0
  316. package/core/utils/toolbox.d.ts +180 -0
  317. package/core/utils/useragent.d.ts +14 -0
  318. package/core/utils/xml.d.ts +96 -0
  319. package/core/utils.d.ts +31 -0
  320. package/core/variable_map.d.ts +164 -0
  321. package/core/variable_model.d.ts +73 -0
  322. package/core/variables.d.ts +238 -0
  323. package/core/variables_dynamic.d.ts +56 -0
  324. package/core/widgetdiv.d.ts +87 -0
  325. package/core/workspace.d.ts +482 -0
  326. package/core/workspace_audio.d.ts +62 -0
  327. package/core/workspace_dragger.d.ts +48 -0
  328. package/core/workspace_svg.d.ts +1103 -0
  329. package/core/xml.d.ts +127 -0
  330. package/core/zoom_controls.d.ts +134 -0
  331. package/core.js +4 -0
  332. package/dart.js +4 -0
  333. package/dart.mjs +6 -0
  334. package/dart_compressed.js +330 -0
  335. package/dart_compressed.js.map +1 -0
  336. package/generators/dart/dart_generator.d.ts +104 -0
  337. package/generators/dart/lists.d.ts +21 -0
  338. package/generators/dart/logic.d.ts +20 -0
  339. package/generators/dart/loops.d.ts +14 -0
  340. package/generators/dart/math.d.ts +26 -0
  341. package/generators/dart/procedures.d.ts +14 -0
  342. package/generators/dart/text.d.ts +25 -0
  343. package/generators/dart/variables.d.ts +14 -0
  344. package/generators/dart/variables_dynamic.d.ts +10 -0
  345. package/generators/dart.d.ts +18 -0
  346. package/generators/javascript/javascript_generator.d.ts +123 -0
  347. package/generators/javascript/lists.d.ts +21 -0
  348. package/generators/javascript/logic.d.ts +20 -0
  349. package/generators/javascript/loops.d.ts +14 -0
  350. package/generators/javascript/math.d.ts +26 -0
  351. package/generators/javascript/procedures.d.ts +14 -0
  352. package/generators/javascript/text.d.ts +25 -0
  353. package/generators/javascript/variables.d.ts +14 -0
  354. package/generators/javascript/variables_dynamic.d.ts +10 -0
  355. package/generators/javascript.d.ts +18 -0
  356. package/generators/lua/lists.d.ts +21 -0
  357. package/generators/lua/logic.d.ts +20 -0
  358. package/generators/lua/loops.d.ts +14 -0
  359. package/generators/lua/lua_generator.d.ts +91 -0
  360. package/generators/lua/math.d.ts +26 -0
  361. package/generators/lua/procedures.d.ts +14 -0
  362. package/generators/lua/text.d.ts +25 -0
  363. package/generators/lua/variables.d.ts +14 -0
  364. package/generators/lua/variables_dynamic.d.ts +10 -0
  365. package/generators/lua.d.ts +12 -0
  366. package/generators/php/lists.d.ts +21 -0
  367. package/generators/php/logic.d.ts +20 -0
  368. package/generators/php/loops.d.ts +14 -0
  369. package/generators/php/math.d.ts +26 -0
  370. package/generators/php/php_generator.d.ts +122 -0
  371. package/generators/php/procedures.d.ts +14 -0
  372. package/generators/php/text.d.ts +25 -0
  373. package/generators/php/variables.d.ts +14 -0
  374. package/generators/php/variables_dynamic.d.ts +10 -0
  375. package/generators/php.d.ts +13 -0
  376. package/generators/python/lists.d.ts +21 -0
  377. package/generators/python/logic.d.ts +20 -0
  378. package/generators/python/loops.d.ts +14 -0
  379. package/generators/python/math.d.ts +26 -0
  380. package/generators/python/procedures.d.ts +14 -0
  381. package/generators/python/python_generator.d.ts +111 -0
  382. package/generators/python/text.d.ts +25 -0
  383. package/generators/python/variables.d.ts +14 -0
  384. package/generators/python/variables_dynamic.d.ts +10 -0
  385. package/generators/python.d.ts +13 -0
  386. package/index.js +36 -0
  387. package/index.mjs +163 -0
  388. package/javascript.js +4 -0
  389. package/javascript.mjs +6 -0
  390. package/javascript_compressed.js +264 -0
  391. package/javascript_compressed.js.map +1 -0
  392. package/lua.js +4 -0
  393. package/lua.mjs +6 -0
  394. package/lua_compressed.js +373 -0
  395. package/lua_compressed.js.map +1 -0
  396. package/msg/ab.js +465 -0
  397. package/msg/ab.mjs +446 -0
  398. package/msg/ace.js +465 -0
  399. package/msg/ace.mjs +446 -0
  400. package/msg/af.js +465 -0
  401. package/msg/af.mjs +446 -0
  402. package/msg/am.js +465 -0
  403. package/msg/am.mjs +446 -0
  404. package/msg/ar.js +465 -0
  405. package/msg/ar.mjs +446 -0
  406. package/msg/ast.js +465 -0
  407. package/msg/ast.mjs +446 -0
  408. package/msg/az.js +465 -0
  409. package/msg/az.mjs +446 -0
  410. package/msg/ba.js +465 -0
  411. package/msg/ba.mjs +446 -0
  412. package/msg/bcc.js +465 -0
  413. package/msg/bcc.mjs +446 -0
  414. package/msg/be-tarask.js +465 -0
  415. package/msg/be-tarask.mjs +446 -0
  416. package/msg/be.js +465 -0
  417. package/msg/be.mjs +446 -0
  418. package/msg/bg.js +465 -0
  419. package/msg/bg.mjs +446 -0
  420. package/msg/bn.js +465 -0
  421. package/msg/bn.mjs +446 -0
  422. package/msg/br.js +465 -0
  423. package/msg/br.mjs +446 -0
  424. package/msg/bs.js +465 -0
  425. package/msg/bs.mjs +446 -0
  426. package/msg/ca.js +465 -0
  427. package/msg/ca.mjs +446 -0
  428. package/msg/cdo.js +465 -0
  429. package/msg/cdo.mjs +446 -0
  430. package/msg/ce.js +465 -0
  431. package/msg/ce.mjs +446 -0
  432. package/msg/cs.js +465 -0
  433. package/msg/cs.mjs +446 -0
  434. package/msg/da.js +465 -0
  435. package/msg/da.mjs +446 -0
  436. package/msg/de.js +465 -0
  437. package/msg/de.mjs +446 -0
  438. package/msg/diq.js +465 -0
  439. package/msg/diq.mjs +446 -0
  440. package/msg/dtp.js +465 -0
  441. package/msg/dtp.mjs +446 -0
  442. package/msg/dty.js +465 -0
  443. package/msg/dty.mjs +446 -0
  444. package/msg/ee.js +465 -0
  445. package/msg/ee.mjs +446 -0
  446. package/msg/el.js +465 -0
  447. package/msg/el.mjs +446 -0
  448. package/msg/en-gb.js +465 -0
  449. package/msg/en-gb.mjs +446 -0
  450. package/msg/en.js +465 -0
  451. package/msg/en.mjs +446 -0
  452. package/msg/eo.js +465 -0
  453. package/msg/eo.mjs +446 -0
  454. package/msg/es.js +465 -0
  455. package/msg/es.mjs +446 -0
  456. package/msg/et.js +465 -0
  457. package/msg/et.mjs +446 -0
  458. package/msg/eu.js +465 -0
  459. package/msg/eu.mjs +446 -0
  460. package/msg/fa.js +465 -0
  461. package/msg/fa.mjs +446 -0
  462. package/msg/fi.js +465 -0
  463. package/msg/fi.mjs +446 -0
  464. package/msg/fo.js +465 -0
  465. package/msg/fo.mjs +446 -0
  466. package/msg/fr.js +465 -0
  467. package/msg/fr.mjs +446 -0
  468. package/msg/frr.js +465 -0
  469. package/msg/frr.mjs +446 -0
  470. package/msg/gl.js +465 -0
  471. package/msg/gl.mjs +446 -0
  472. package/msg/gn.js +465 -0
  473. package/msg/gn.mjs +446 -0
  474. package/msg/gor.js +465 -0
  475. package/msg/gor.mjs +446 -0
  476. package/msg/ha.js +465 -0
  477. package/msg/ha.mjs +446 -0
  478. package/msg/hak.js +465 -0
  479. package/msg/hak.mjs +446 -0
  480. package/msg/he.js +465 -0
  481. package/msg/he.mjs +446 -0
  482. package/msg/hi.js +465 -0
  483. package/msg/hi.mjs +446 -0
  484. package/msg/hr.js +465 -0
  485. package/msg/hr.mjs +446 -0
  486. package/msg/hrx.js +465 -0
  487. package/msg/hrx.mjs +446 -0
  488. package/msg/hsb.js +465 -0
  489. package/msg/hsb.mjs +446 -0
  490. package/msg/hu.js +465 -0
  491. package/msg/hu.mjs +446 -0
  492. package/msg/hy.js +465 -0
  493. package/msg/hy.mjs +446 -0
  494. package/msg/ia.js +465 -0
  495. package/msg/ia.mjs +446 -0
  496. package/msg/id.js +465 -0
  497. package/msg/id.mjs +446 -0
  498. package/msg/ig.js +465 -0
  499. package/msg/ig.mjs +446 -0
  500. package/msg/inh.js +465 -0
  501. package/msg/inh.mjs +446 -0
  502. package/msg/is.js +465 -0
  503. package/msg/is.mjs +446 -0
  504. package/msg/it.js +465 -0
  505. package/msg/it.mjs +446 -0
  506. package/msg/ja.js +465 -0
  507. package/msg/ja.mjs +446 -0
  508. package/msg/ka.js +465 -0
  509. package/msg/ka.mjs +446 -0
  510. package/msg/kab.js +465 -0
  511. package/msg/kab.mjs +446 -0
  512. package/msg/kbd-cyrl.js +465 -0
  513. package/msg/kbd-cyrl.mjs +446 -0
  514. package/msg/km.js +465 -0
  515. package/msg/km.mjs +446 -0
  516. package/msg/kn.js +465 -0
  517. package/msg/kn.mjs +446 -0
  518. package/msg/ko.js +465 -0
  519. package/msg/ko.mjs +446 -0
  520. package/msg/ksh.js +465 -0
  521. package/msg/ksh.mjs +446 -0
  522. package/msg/ku-latn.js +465 -0
  523. package/msg/ku-latn.mjs +446 -0
  524. package/msg/ky.js +465 -0
  525. package/msg/ky.mjs +446 -0
  526. package/msg/la.js +465 -0
  527. package/msg/la.mjs +446 -0
  528. package/msg/lb.js +465 -0
  529. package/msg/lb.mjs +446 -0
  530. package/msg/lki.js +465 -0
  531. package/msg/lki.mjs +446 -0
  532. package/msg/lo.js +465 -0
  533. package/msg/lo.mjs +446 -0
  534. package/msg/lrc.js +465 -0
  535. package/msg/lrc.mjs +446 -0
  536. package/msg/lt.js +465 -0
  537. package/msg/lt.mjs +446 -0
  538. package/msg/lv.js +465 -0
  539. package/msg/lv.mjs +446 -0
  540. package/msg/mg.js +465 -0
  541. package/msg/mg.mjs +446 -0
  542. package/msg/mk.js +465 -0
  543. package/msg/mk.mjs +446 -0
  544. package/msg/ml.js +465 -0
  545. package/msg/ml.mjs +446 -0
  546. package/msg/mnw.js +465 -0
  547. package/msg/mnw.mjs +446 -0
  548. package/msg/ms.js +465 -0
  549. package/msg/ms.mjs +446 -0
  550. package/msg/my.js +465 -0
  551. package/msg/my.mjs +446 -0
  552. package/msg/mzn.js +465 -0
  553. package/msg/mzn.mjs +446 -0
  554. package/msg/nb.js +465 -0
  555. package/msg/nb.mjs +446 -0
  556. package/msg/ne.js +465 -0
  557. package/msg/ne.mjs +446 -0
  558. package/msg/nl.js +465 -0
  559. package/msg/nl.mjs +446 -0
  560. package/msg/oc.js +465 -0
  561. package/msg/oc.mjs +446 -0
  562. package/msg/olo.js +465 -0
  563. package/msg/olo.mjs +446 -0
  564. package/msg/pa.js +465 -0
  565. package/msg/pa.mjs +446 -0
  566. package/msg/pl.js +465 -0
  567. package/msg/pl.mjs +446 -0
  568. package/msg/pms.js +465 -0
  569. package/msg/pms.mjs +446 -0
  570. package/msg/ps.js +465 -0
  571. package/msg/ps.mjs +446 -0
  572. package/msg/pt-br.js +465 -0
  573. package/msg/pt-br.mjs +446 -0
  574. package/msg/pt.js +465 -0
  575. package/msg/pt.mjs +446 -0
  576. package/msg/ro.js +465 -0
  577. package/msg/ro.mjs +446 -0
  578. package/msg/ru.js +465 -0
  579. package/msg/ru.mjs +446 -0
  580. package/msg/sc.js +465 -0
  581. package/msg/sc.mjs +446 -0
  582. package/msg/sco.js +465 -0
  583. package/msg/sco.mjs +446 -0
  584. package/msg/sd.js +465 -0
  585. package/msg/sd.mjs +446 -0
  586. package/msg/shn.js +465 -0
  587. package/msg/shn.mjs +446 -0
  588. package/msg/si.js +465 -0
  589. package/msg/si.mjs +446 -0
  590. package/msg/sk.js +465 -0
  591. package/msg/sk.mjs +446 -0
  592. package/msg/skr-arab.js +465 -0
  593. package/msg/skr-arab.mjs +446 -0
  594. package/msg/sl.js +465 -0
  595. package/msg/sl.mjs +446 -0
  596. package/msg/smn.js +465 -0
  597. package/msg/smn.mjs +446 -0
  598. package/msg/sq.js +465 -0
  599. package/msg/sq.mjs +446 -0
  600. package/msg/sr-latn.js +465 -0
  601. package/msg/sr-latn.mjs +446 -0
  602. package/msg/sr.js +465 -0
  603. package/msg/sr.mjs +446 -0
  604. package/msg/sv.js +465 -0
  605. package/msg/sv.mjs +446 -0
  606. package/msg/sw.js +465 -0
  607. package/msg/sw.mjs +446 -0
  608. package/msg/ta.js +465 -0
  609. package/msg/ta.mjs +446 -0
  610. package/msg/tcy.js +465 -0
  611. package/msg/tcy.mjs +446 -0
  612. package/msg/tdd.js +465 -0
  613. package/msg/tdd.mjs +446 -0
  614. package/msg/te.js +465 -0
  615. package/msg/te.mjs +446 -0
  616. package/msg/th.js +465 -0
  617. package/msg/th.mjs +446 -0
  618. package/msg/ti.js +465 -0
  619. package/msg/ti.mjs +446 -0
  620. package/msg/tl.js +465 -0
  621. package/msg/tl.mjs +446 -0
  622. package/msg/tlh.js +465 -0
  623. package/msg/tlh.mjs +446 -0
  624. package/msg/tr.js +465 -0
  625. package/msg/tr.mjs +446 -0
  626. package/msg/ug-arab.js +465 -0
  627. package/msg/ug-arab.mjs +446 -0
  628. package/msg/uk.js +465 -0
  629. package/msg/uk.mjs +446 -0
  630. package/msg/ur.js +465 -0
  631. package/msg/ur.mjs +446 -0
  632. package/msg/uz.js +465 -0
  633. package/msg/uz.mjs +446 -0
  634. package/msg/vi.js +465 -0
  635. package/msg/vi.mjs +446 -0
  636. package/msg/xmf.js +465 -0
  637. package/msg/xmf.mjs +446 -0
  638. package/msg/yo.js +465 -0
  639. package/msg/yo.mjs +446 -0
  640. package/msg/zgh.js +465 -0
  641. package/msg/zgh.mjs +446 -0
  642. package/msg/zh-hans.js +465 -0
  643. package/msg/zh-hans.mjs +446 -0
  644. package/msg/zh-hant.js +465 -0
  645. package/msg/zh-hant.mjs +446 -0
  646. package/package.json +8 -37
  647. package/php.js +4 -0
  648. package/php.mjs +6 -0
  649. package/php_compressed.js +283 -0
  650. package/php_compressed.js.map +1 -0
  651. package/python.js +4 -0
  652. package/python.mjs +6 -0
  653. package/python_compressed.js +208 -0
  654. package/python_compressed.js.map +1 -0
  655. package/.prettierignore +0 -30
  656. package/.prettierrc.js +0 -15
  657. package/api-extractor.json +0 -390
  658. package/appengine/.gcloudignore +0 -20
  659. package/appengine/README.txt +0 -42
  660. package/appengine/add_timestamps.py +0 -69
  661. package/appengine/app.yaml +0 -106
  662. package/appengine/apple-touch-icon.png +0 -0
  663. package/appengine/blockly_compressed.js +0 -11
  664. package/appengine/expiration.py +0 -52
  665. package/appengine/favicon.ico +0 -0
  666. package/appengine/index.yaml +0 -11
  667. package/appengine/main.py +0 -39
  668. package/appengine/redirect.html +0 -107
  669. package/appengine/requirements.txt +0 -1
  670. package/appengine/robots.txt +0 -2
  671. package/appengine/storage.js +0 -190
  672. package/appengine/storage.py +0 -125
  673. package/blocks/blocks.ts +0 -44
  674. package/blocks/lists.ts +0 -1065
  675. package/blocks/logic.ts +0 -712
  676. package/blocks/loops.ts +0 -408
  677. package/blocks/math.ts +0 -591
  678. package/blocks/procedures.ts +0 -1366
  679. package/blocks/text.ts +0 -1001
  680. package/blocks/variables.ts +0 -181
  681. package/blocks/variables_dynamic.ts +0 -192
  682. package/core/any_aliases.ts +0 -8
  683. package/core/block.ts +0 -2511
  684. package/core/block_animations.ts +0 -233
  685. package/core/block_flyout_inflater.ts +0 -283
  686. package/core/block_svg.ts +0 -1873
  687. package/core/blockly.ts +0 -644
  688. package/core/blockly_options.ts +0 -71
  689. package/core/blocks.ts +0 -18
  690. package/core/browser_events.ts +0 -256
  691. package/core/bubbles/bubble.ts +0 -732
  692. package/core/bubbles/mini_workspace_bubble.ts +0 -292
  693. package/core/bubbles/text_bubble.ts +0 -112
  694. package/core/bubbles/textinput_bubble.ts +0 -296
  695. package/core/bubbles.ts +0 -12
  696. package/core/bump_objects.ts +0 -188
  697. package/core/button_flyout_inflater.ts +0 -76
  698. package/core/clipboard/block_paster.ts +0 -154
  699. package/core/clipboard/registry.ts +0 -31
  700. package/core/clipboard/workspace_comment_paster.ts +0 -95
  701. package/core/clipboard.ts +0 -197
  702. package/core/comments/collapse_comment_bar_button.ts +0 -102
  703. package/core/comments/comment_bar_button.ts +0 -105
  704. package/core/comments/comment_editor.ts +0 -220
  705. package/core/comments/comment_view.ts +0 -773
  706. package/core/comments/delete_comment_bar_button.ts +0 -106
  707. package/core/comments/rendered_workspace_comment.ts +0 -361
  708. package/core/comments/workspace_comment.ts +0 -247
  709. package/core/comments.ts +0 -13
  710. package/core/common.ts +0 -347
  711. package/core/component_manager.ts +0 -247
  712. package/core/config.ts +0 -65
  713. package/core/connection.ts +0 -807
  714. package/core/connection_checker.ts +0 -348
  715. package/core/connection_db.ts +0 -297
  716. package/core/connection_type.ts +0 -21
  717. package/core/constants.ts +0 -23
  718. package/core/contextmenu.ts +0 -295
  719. package/core/contextmenu_items.ts +0 -684
  720. package/core/contextmenu_registry.ts +0 -278
  721. package/core/css.ts +0 -518
  722. package/core/delete_area.ts +0 -77
  723. package/core/dialog.ts +0 -167
  724. package/core/drag_target.ts +0 -97
  725. package/core/dragging/block_drag_strategy.ts +0 -523
  726. package/core/dragging/bubble_drag_strategy.ts +0 -49
  727. package/core/dragging/comment_drag_strategy.ts +0 -92
  728. package/core/dragging/dragger.ts +0 -174
  729. package/core/dragging.ts +0 -12
  730. package/core/dropdowndiv.ts +0 -792
  731. package/core/events/events.ts +0 -109
  732. package/core/events/events_abstract.ts +0 -129
  733. package/core/events/events_block_base.ts +0 -87
  734. package/core/events/events_block_change.ts +0 -259
  735. package/core/events/events_block_create.ts +0 -185
  736. package/core/events/events_block_delete.ts +0 -182
  737. package/core/events/events_block_drag.ts +0 -116
  738. package/core/events/events_block_field_intermediate_change.ts +0 -166
  739. package/core/events/events_block_move.ts +0 -306
  740. package/core/events/events_bubble_open.ts +0 -121
  741. package/core/events/events_click.ts +0 -110
  742. package/core/events/events_comment_base.ts +0 -126
  743. package/core/events/events_comment_change.ts +0 -156
  744. package/core/events/events_comment_collapse.ts +0 -103
  745. package/core/events/events_comment_create.ts +0 -114
  746. package/core/events/events_comment_delete.ts +0 -113
  747. package/core/events/events_comment_drag.ts +0 -99
  748. package/core/events/events_comment_move.ts +0 -206
  749. package/core/events/events_comment_resize.ts +0 -169
  750. package/core/events/events_selected.ts +0 -97
  751. package/core/events/events_theme_change.ts +0 -84
  752. package/core/events/events_toolbox_item_select.ts +0 -96
  753. package/core/events/events_trashcan_open.ts +0 -87
  754. package/core/events/events_ui_base.ts +0 -47
  755. package/core/events/events_var_base.ts +0 -88
  756. package/core/events/events_var_create.ts +0 -131
  757. package/core/events/events_var_delete.ts +0 -124
  758. package/core/events/events_var_rename.ts +0 -133
  759. package/core/events/events_var_type_change.ts +0 -122
  760. package/core/events/events_viewport.ts +0 -149
  761. package/core/events/predicates.ts +0 -166
  762. package/core/events/type.ts +0 -87
  763. package/core/events/utils.ts +0 -455
  764. package/core/events/workspace_events.ts +0 -46
  765. package/core/extensions.ts +0 -497
  766. package/core/field.ts +0 -1445
  767. package/core/field_checkbox.ts +0 -266
  768. package/core/field_dropdown.ts +0 -907
  769. package/core/field_image.ts +0 -307
  770. package/core/field_input.ts +0 -826
  771. package/core/field_label.ts +0 -150
  772. package/core/field_label_serializable.ts +0 -73
  773. package/core/field_number.ts +0 -381
  774. package/core/field_registry.ts +0 -115
  775. package/core/field_textinput.ts +0 -125
  776. package/core/field_variable.ts +0 -654
  777. package/core/flyout_base.ts +0 -1013
  778. package/core/flyout_button.ts +0 -447
  779. package/core/flyout_horizontal.ts +0 -375
  780. package/core/flyout_item.ts +0 -33
  781. package/core/flyout_metrics_manager.ts +0 -90
  782. package/core/flyout_navigator.ts +0 -24
  783. package/core/flyout_separator.ts +0 -94
  784. package/core/flyout_vertical.ts +0 -354
  785. package/core/focus_manager.ts +0 -675
  786. package/core/generator.ts +0 -611
  787. package/core/gesture.ts +0 -1190
  788. package/core/grid.ts +0 -267
  789. package/core/icons/comment_icon.ts +0 -429
  790. package/core/icons/exceptions.ts +0 -23
  791. package/core/icons/icon.ts +0 -204
  792. package/core/icons/icon_types.ts +0 -32
  793. package/core/icons/mutator_icon.ts +0 -360
  794. package/core/icons/registry.ts +0 -33
  795. package/core/icons/warning_icon.ts +0 -226
  796. package/core/icons.ts +0 -24
  797. package/core/inject.ts +0 -332
  798. package/core/inputs/align.ts +0 -14
  799. package/core/inputs/dummy_input.ts +0 -26
  800. package/core/inputs/end_row_input.ts +0 -31
  801. package/core/inputs/input.ts +0 -317
  802. package/core/inputs/input_types.ts +0 -27
  803. package/core/inputs/statement_input.ts +0 -34
  804. package/core/inputs/value_input.ts +0 -30
  805. package/core/inputs.ts +0 -23
  806. package/core/insertion_marker_previewer.ts +0 -268
  807. package/core/interfaces/i_autohideable.ts +0 -27
  808. package/core/interfaces/i_bounded_element.ts +0 -31
  809. package/core/interfaces/i_bubble.ts +0 -64
  810. package/core/interfaces/i_collapsible_toolbox_item.ts +0 -33
  811. package/core/interfaces/i_comment_icon.ts +0 -47
  812. package/core/interfaces/i_component.ts +0 -19
  813. package/core/interfaces/i_connection_checker.ts +0 -101
  814. package/core/interfaces/i_connection_previewer.ts +0 -50
  815. package/core/interfaces/i_contextmenu.ts +0 -21
  816. package/core/interfaces/i_copyable.ts +0 -39
  817. package/core/interfaces/i_deletable.ts +0 -35
  818. package/core/interfaces/i_delete_area.ts +0 -28
  819. package/core/interfaces/i_drag_target.ts +0 -67
  820. package/core/interfaces/i_draggable.ts +0 -73
  821. package/core/interfaces/i_dragger.ts +0 -35
  822. package/core/interfaces/i_flyout.ts +0 -190
  823. package/core/interfaces/i_flyout_inflater.ts +0 -51
  824. package/core/interfaces/i_focusable_node.ts +0 -120
  825. package/core/interfaces/i_focusable_tree.ts +0 -144
  826. package/core/interfaces/i_has_bubble.ts +0 -37
  827. package/core/interfaces/i_icon.ts +0 -116
  828. package/core/interfaces/i_keyboard_accessible.ts +0 -22
  829. package/core/interfaces/i_legacy_procedure_blocks.ts +0 -51
  830. package/core/interfaces/i_metrics_manager.ts +0 -150
  831. package/core/interfaces/i_movable.ts +0 -19
  832. package/core/interfaces/i_navigation_policy.ts +0 -69
  833. package/core/interfaces/i_observable.ts +0 -28
  834. package/core/interfaces/i_parameter_model.ts +0 -51
  835. package/core/interfaces/i_paster.ts +0 -25
  836. package/core/interfaces/i_positionable.ts +0 -33
  837. package/core/interfaces/i_procedure_block.ts +0 -29
  838. package/core/interfaces/i_procedure_map.ts +0 -18
  839. package/core/interfaces/i_procedure_model.ts +0 -71
  840. package/core/interfaces/i_registrable.ts +0 -12
  841. package/core/interfaces/i_rendered_element.ts +0 -19
  842. package/core/interfaces/i_selectable.ts +0 -41
  843. package/core/interfaces/i_selectable_toolbox_item.ts +0 -63
  844. package/core/interfaces/i_serializable.ts +0 -32
  845. package/core/interfaces/i_serializer.ts +0 -51
  846. package/core/interfaces/i_styleable.ts +0 -26
  847. package/core/interfaces/i_toolbox.ts +0 -121
  848. package/core/interfaces/i_toolbox_item.ts +0 -83
  849. package/core/interfaces/i_variable_backed_parameter_model.ts +0 -23
  850. package/core/interfaces/i_variable_map.ts +0 -65
  851. package/core/interfaces/i_variable_model.ts +0 -57
  852. package/core/internal_constants.ts +0 -47
  853. package/core/keyboard_nav/block_comment_navigation_policy.ts +0 -76
  854. package/core/keyboard_nav/block_navigation_policy.ts +0 -213
  855. package/core/keyboard_nav/comment_bar_button_navigation_policy.ts +0 -88
  856. package/core/keyboard_nav/comment_editor_navigation_policy.ts +0 -54
  857. package/core/keyboard_nav/connection_navigation_policy.ts +0 -155
  858. package/core/keyboard_nav/field_navigation_policy.ts +0 -85
  859. package/core/keyboard_nav/flyout_button_navigation_policy.ts +0 -76
  860. package/core/keyboard_nav/flyout_navigation_policy.ts +0 -111
  861. package/core/keyboard_nav/flyout_separator_navigation_policy.ts +0 -53
  862. package/core/keyboard_nav/icon_navigation_policy.ts +0 -93
  863. package/core/keyboard_nav/line_cursor.ts +0 -414
  864. package/core/keyboard_nav/marker.ts +0 -86
  865. package/core/keyboard_nav/workspace_comment_navigation_policy.ts +0 -77
  866. package/core/keyboard_nav/workspace_navigation_policy.ts +0 -77
  867. package/core/keyboard_navigation_controller.ts +0 -63
  868. package/core/label_flyout_inflater.ts +0 -75
  869. package/core/layer_manager.ts +0 -229
  870. package/core/layers.ts +0 -17
  871. package/core/main.ts +0 -31
  872. package/core/marker_manager.ts +0 -116
  873. package/core/menu.ts +0 -486
  874. package/core/menu_separator.ts +0 -38
  875. package/core/menuitem.ts +0 -289
  876. package/core/metrics_manager.ts +0 -486
  877. package/core/msg.ts +0 -27
  878. package/core/names.ts +0 -275
  879. package/core/navigator.ts +0 -123
  880. package/core/observable_procedure_map.ts +0 -66
  881. package/core/options.ts +0 -377
  882. package/core/positionable_helpers.ts +0 -186
  883. package/core/procedures.ts +0 -622
  884. package/core/registry.ts +0 -400
  885. package/core/render_management.ts +0 -193
  886. package/core/rendered_connection.ts +0 -690
  887. package/core/renderers/common/block_rendering.ts +0 -122
  888. package/core/renderers/common/constants.ts +0 -1226
  889. package/core/renderers/common/drawer.ts +0 -511
  890. package/core/renderers/common/i_path_object.ts +0 -109
  891. package/core/renderers/common/info.ts +0 -768
  892. package/core/renderers/common/path_object.ts +0 -260
  893. package/core/renderers/common/renderer.ts +0 -236
  894. package/core/renderers/geras/constants.ts +0 -42
  895. package/core/renderers/geras/drawer.ts +0 -166
  896. package/core/renderers/geras/geras.ts +0 -31
  897. package/core/renderers/geras/highlight_constants.ts +0 -342
  898. package/core/renderers/geras/highlighter.ts +0 -312
  899. package/core/renderers/geras/info.ts +0 -476
  900. package/core/renderers/geras/measurables/inline_input.ts +0 -36
  901. package/core/renderers/geras/measurables/statement_input.ts +0 -35
  902. package/core/renderers/geras/path_object.ts +0 -121
  903. package/core/renderers/geras/renderer.ts +0 -127
  904. package/core/renderers/measurables/base.ts +0 -40
  905. package/core/renderers/measurables/bottom_row.ts +0 -103
  906. package/core/renderers/measurables/connection.ts +0 -41
  907. package/core/renderers/measurables/external_value_input.ts +0 -51
  908. package/core/renderers/measurables/field.ts +0 -48
  909. package/core/renderers/measurables/hat.ts +0 -32
  910. package/core/renderers/measurables/icon.ts +0 -40
  911. package/core/renderers/measurables/in_row_spacer.ts +0 -36
  912. package/core/renderers/measurables/inline_input.ts +0 -61
  913. package/core/renderers/measurables/input_connection.ts +0 -56
  914. package/core/renderers/measurables/input_row.ts +0 -62
  915. package/core/renderers/measurables/jagged_edge.ts +0 -35
  916. package/core/renderers/measurables/next_connection.ts +0 -41
  917. package/core/renderers/measurables/output_connection.ts +0 -42
  918. package/core/renderers/measurables/previous_connection.ts +0 -41
  919. package/core/renderers/measurables/round_corner.ts +0 -41
  920. package/core/renderers/measurables/row.ts +0 -190
  921. package/core/renderers/measurables/spacer_row.ts +0 -43
  922. package/core/renderers/measurables/square_corner.ts +0 -39
  923. package/core/renderers/measurables/statement_input.ts +0 -47
  924. package/core/renderers/measurables/top_row.ts +0 -108
  925. package/core/renderers/measurables/types.ts +0 -362
  926. package/core/renderers/thrasos/info.ts +0 -327
  927. package/core/renderers/thrasos/renderer.ts +0 -39
  928. package/core/renderers/thrasos/thrasos.ts +0 -14
  929. package/core/renderers/zelos/constants.ts +0 -913
  930. package/core/renderers/zelos/drawer.ts +0 -272
  931. package/core/renderers/zelos/info.ts +0 -651
  932. package/core/renderers/zelos/measurables/bottom_row.ts +0 -44
  933. package/core/renderers/zelos/measurables/inputs.ts +0 -40
  934. package/core/renderers/zelos/measurables/row_elements.ts +0 -29
  935. package/core/renderers/zelos/measurables/top_row.ts +0 -50
  936. package/core/renderers/zelos/path_object.ts +0 -209
  937. package/core/renderers/zelos/renderer.ts +0 -91
  938. package/core/renderers/zelos/zelos.ts +0 -31
  939. package/core/scrollbar.ts +0 -898
  940. package/core/scrollbar_pair.ts +0 -349
  941. package/core/separator_flyout_inflater.ts +0 -83
  942. package/core/serialization/blocks.ts +0 -834
  943. package/core/serialization/exceptions.ts +0 -112
  944. package/core/serialization/priorities.ts +0 -25
  945. package/core/serialization/procedures.ts +0 -158
  946. package/core/serialization/registry.ts +0 -30
  947. package/core/serialization/variables.ts +0 -69
  948. package/core/serialization/workspace_comments.ts +0 -143
  949. package/core/serialization/workspaces.ts +0 -94
  950. package/core/serialization.ts +0 -32
  951. package/core/shortcut_items.ts +0 -405
  952. package/core/shortcut_registry.ts +0 -451
  953. package/core/sprites.ts +0 -15
  954. package/core/theme/classic.ts +0 -40
  955. package/core/theme/themes.ts +0 -12
  956. package/core/theme/zelos.ts +0 -80
  957. package/core/theme.ts +0 -232
  958. package/core/theme_manager.ts +0 -192
  959. package/core/toast.ts +0 -219
  960. package/core/toolbox/category.ts +0 -746
  961. package/core/toolbox/collapsible_category.ts +0 -287
  962. package/core/toolbox/separator.ts +0 -108
  963. package/core/toolbox/toolbox.ts +0 -1210
  964. package/core/toolbox/toolbox_item.ts +0 -181
  965. package/core/tooltip.ts +0 -466
  966. package/core/touch.ts +0 -155
  967. package/core/trashcan.ts +0 -730
  968. package/core/utils/aria.ts +0 -158
  969. package/core/utils/array.ts +0 -24
  970. package/core/utils/colour.ts +0 -265
  971. package/core/utils/coordinate.ts +0 -129
  972. package/core/utils/deprecation.ts +0 -47
  973. package/core/utils/dom.ts +0 -356
  974. package/core/utils/drag.ts +0 -74
  975. package/core/utils/focusable_tree_traverser.ts +0 -126
  976. package/core/utils/idgenerator.ts +0 -70
  977. package/core/utils/keycodes.ts +0 -154
  978. package/core/utils/math.ts +0 -50
  979. package/core/utils/metrics.ts +0 -86
  980. package/core/utils/object.ts +0 -33
  981. package/core/utils/parsing.ts +0 -286
  982. package/core/utils/rect.ts +0 -142
  983. package/core/utils/size.ts +0 -62
  984. package/core/utils/string.ts +0 -289
  985. package/core/utils/style.ts +0 -219
  986. package/core/utils/svg.ts +0 -84
  987. package/core/utils/svg_math.ts +0 -207
  988. package/core/utils/svg_paths.ts +0 -133
  989. package/core/utils/toolbox.ts +0 -417
  990. package/core/utils/useragent.ts +0 -86
  991. package/core/utils/xml.ts +0 -165
  992. package/core/utils.ts +0 -59
  993. package/core/variable_map.ts +0 -476
  994. package/core/variable_model.ts +0 -150
  995. package/core/variables.ts +0 -931
  996. package/core/variables_dynamic.ts +0 -230
  997. package/core/widgetdiv.ts +0 -349
  998. package/core/workspace.ts +0 -994
  999. package/core/workspace_audio.ts +0 -137
  1000. package/core/workspace_dragger.ts +0 -81
  1001. package/core/workspace_svg.ts +0 -2954
  1002. package/core/xml.ts +0 -1126
  1003. package/core/zoom_controls.ts +0 -495
  1004. package/demos/blockfactory/analytics.js +0 -195
  1005. package/demos/blockfactory/app_controller.js +0 -726
  1006. package/demos/blockfactory/block_definition_extractor.js +0 -742
  1007. package/demos/blockfactory/block_exporter_controller.js +0 -311
  1008. package/demos/blockfactory/block_exporter_tools.js +0 -212
  1009. package/demos/blockfactory/block_exporter_view.js +0 -101
  1010. package/demos/blockfactory/block_library_controller.js +0 -325
  1011. package/demos/blockfactory/block_library_storage.js +0 -149
  1012. package/demos/blockfactory/block_library_view.js +0 -178
  1013. package/demos/blockfactory/block_option.js +0 -151
  1014. package/demos/blockfactory/blocks.js +0 -920
  1015. package/demos/blockfactory/cp.css +0 -46
  1016. package/demos/blockfactory/cp.js +0 -179
  1017. package/demos/blockfactory/factory.css +0 -586
  1018. package/demos/blockfactory/factory.js +0 -338
  1019. package/demos/blockfactory/factory_utils.js +0 -1036
  1020. package/demos/blockfactory/icon.png +0 -0
  1021. package/demos/blockfactory/index.html +0 -767
  1022. package/demos/blockfactory/link.png +0 -0
  1023. package/demos/blockfactory/standard_categories.js +0 -384
  1024. package/demos/blockfactory/workspacefactory/wfactory_controller.js +0 -1332
  1025. package/demos/blockfactory/workspacefactory/wfactory_generator.js +0 -224
  1026. package/demos/blockfactory/workspacefactory/wfactory_init.js +0 -541
  1027. package/demos/blockfactory/workspacefactory/wfactory_model.js +0 -548
  1028. package/demos/blockfactory/workspacefactory/wfactory_view.js +0 -424
  1029. package/demos/code/code.js +0 -626
  1030. package/demos/code/icon.png +0 -0
  1031. package/demos/code/icons.png +0 -0
  1032. package/demos/code/index.html +0 -359
  1033. package/demos/code/msg/ar.js +0 -24
  1034. package/demos/code/msg/be-tarask.js +0 -24
  1035. package/demos/code/msg/br.js +0 -24
  1036. package/demos/code/msg/ca.js +0 -24
  1037. package/demos/code/msg/cs.js +0 -24
  1038. package/demos/code/msg/da.js +0 -24
  1039. package/demos/code/msg/de.js +0 -24
  1040. package/demos/code/msg/el.js +0 -24
  1041. package/demos/code/msg/en.js +0 -24
  1042. package/demos/code/msg/es.js +0 -24
  1043. package/demos/code/msg/et.js +0 -24
  1044. package/demos/code/msg/fa.js +0 -24
  1045. package/demos/code/msg/fr.js +0 -24
  1046. package/demos/code/msg/he.js +0 -24
  1047. package/demos/code/msg/hr.js +0 -24
  1048. package/demos/code/msg/hrx.js +0 -24
  1049. package/demos/code/msg/hu.js +0 -24
  1050. package/demos/code/msg/ia.js +0 -24
  1051. package/demos/code/msg/is.js +0 -24
  1052. package/demos/code/msg/it.js +0 -24
  1053. package/demos/code/msg/ja.js +0 -24
  1054. package/demos/code/msg/kab.js +0 -24
  1055. package/demos/code/msg/ko.js +0 -24
  1056. package/demos/code/msg/mk.js +0 -24
  1057. package/demos/code/msg/ms.js +0 -24
  1058. package/demos/code/msg/nb.js +0 -24
  1059. package/demos/code/msg/nl.js +0 -24
  1060. package/demos/code/msg/oc.js +0 -24
  1061. package/demos/code/msg/pl.js +0 -24
  1062. package/demos/code/msg/pms.js +0 -24
  1063. package/demos/code/msg/pt-br.js +0 -24
  1064. package/demos/code/msg/ro.js +0 -24
  1065. package/demos/code/msg/ru.js +0 -24
  1066. package/demos/code/msg/sc.js +0 -24
  1067. package/demos/code/msg/sk.js +0 -24
  1068. package/demos/code/msg/sr.js +0 -24
  1069. package/demos/code/msg/sv.js +0 -24
  1070. package/demos/code/msg/ta.js +0 -24
  1071. package/demos/code/msg/th.js +0 -24
  1072. package/demos/code/msg/tlh.js +0 -24
  1073. package/demos/code/msg/tr.js +0 -24
  1074. package/demos/code/msg/uk.js +0 -24
  1075. package/demos/code/msg/vi.js +0 -24
  1076. package/demos/code/msg/zh-hans.js +0 -24
  1077. package/demos/code/msg/zh-hant.js +0 -24
  1078. package/demos/code/style.css +0 -184
  1079. package/demos/index.html +0 -68
  1080. package/demos/storage/icon.png +0 -0
  1081. package/demos/storage/index.html +0 -104
  1082. package/eslint.config.mjs +0 -314
  1083. package/generators/dart/dart_generator.ts +0 -321
  1084. package/generators/dart/lists.ts +0 -525
  1085. package/generators/dart/logic.ts +0 -157
  1086. package/generators/dart/loops.ts +0 -217
  1087. package/generators/dart/math.ts +0 -559
  1088. package/generators/dart/procedures.ts +0 -138
  1089. package/generators/dart/text.ts +0 -405
  1090. package/generators/dart/variables.ts +0 -32
  1091. package/generators/dart/variables_dynamic.ts +0 -17
  1092. package/generators/dart.ts +0 -50
  1093. package/generators/javascript/javascript_generator.ts +0 -346
  1094. package/generators/javascript/lists.ts +0 -465
  1095. package/generators/javascript/logic.ts +0 -155
  1096. package/generators/javascript/loops.ts +0 -245
  1097. package/generators/javascript/math.ts +0 -450
  1098. package/generators/javascript/procedures.ts +0 -142
  1099. package/generators/javascript/text.ts +0 -418
  1100. package/generators/javascript/variables.ts +0 -32
  1101. package/generators/javascript/variables_dynamic.ts +0 -17
  1102. package/generators/javascript.ts +0 -46
  1103. package/generators/lua/lists.ts +0 -445
  1104. package/generators/lua/logic.ts +0 -144
  1105. package/generators/lua/loops.ts +0 -192
  1106. package/generators/lua/lua_generator.ts +0 -225
  1107. package/generators/lua/math.ts +0 -473
  1108. package/generators/lua/procedures.ts +0 -144
  1109. package/generators/lua/text.ts +0 -380
  1110. package/generators/lua/variables.ts +0 -31
  1111. package/generators/lua/variables_dynamic.ts +0 -17
  1112. package/generators/lua.ts +0 -44
  1113. package/generators/php/lists.ts +0 -585
  1114. package/generators/php/logic.ts +0 -157
  1115. package/generators/php/loops.ts +0 -218
  1116. package/generators/php/math.ts +0 -408
  1117. package/generators/php/php_generator.ts +0 -320
  1118. package/generators/php/procedures.ts +0 -159
  1119. package/generators/php/text.ts +0 -315
  1120. package/generators/php/variables.ts +0 -32
  1121. package/generators/php/variables_dynamic.ts +0 -17
  1122. package/generators/php.ts +0 -46
  1123. package/generators/python/lists.ts +0 -398
  1124. package/generators/python/logic.ts +0 -152
  1125. package/generators/python/loops.ts +0 -251
  1126. package/generators/python/math.ts +0 -434
  1127. package/generators/python/procedures.ts +0 -159
  1128. package/generators/python/python_generator.ts +0 -355
  1129. package/generators/python/text.ts +0 -338
  1130. package/generators/python/variables.ts +0 -31
  1131. package/generators/python/variables_dynamic.ts +0 -17
  1132. package/generators/python.ts +0 -51
  1133. package/gulpfile.mjs +0 -100
  1134. package/jsconfig.json +0 -7
  1135. package/msg/json/README.md +0 -33
  1136. package/msg/json/ab.json +0 -222
  1137. package/msg/json/ace.json +0 -7
  1138. package/msg/json/af.json +0 -34
  1139. package/msg/json/am.json +0 -30
  1140. package/msg/json/ar.json +0 -355
  1141. package/msg/json/ast.json +0 -10
  1142. package/msg/json/az.json +0 -334
  1143. package/msg/json/ba.json +0 -211
  1144. package/msg/json/bcc.json +0 -290
  1145. package/msg/json/be-tarask.json +0 -335
  1146. package/msg/json/be.json +0 -326
  1147. package/msg/json/bg.json +0 -347
  1148. package/msg/json/bn.json +0 -189
  1149. package/msg/json/br.json +0 -334
  1150. package/msg/json/bs.json +0 -166
  1151. package/msg/json/ca.json +0 -341
  1152. package/msg/json/cdo.json +0 -6
  1153. package/msg/json/ce.json +0 -328
  1154. package/msg/json/constants.json +0 -12
  1155. package/msg/json/cs.json +0 -344
  1156. package/msg/json/da.json +0 -346
  1157. package/msg/json/de.json +0 -369
  1158. package/msg/json/diq.json +0 -264
  1159. package/msg/json/dtp.json +0 -198
  1160. package/msg/json/dty.json +0 -97
  1161. package/msg/json/ee.json +0 -160
  1162. package/msg/json/el.json +0 -356
  1163. package/msg/json/en-gb.json +0 -199
  1164. package/msg/json/en.json +0 -423
  1165. package/msg/json/eo.json +0 -337
  1166. package/msg/json/es.json +0 -361
  1167. package/msg/json/et.json +0 -335
  1168. package/msg/json/eu.json +0 -219
  1169. package/msg/json/fa.json +0 -342
  1170. package/msg/json/fi.json +0 -350
  1171. package/msg/json/fo.json +0 -46
  1172. package/msg/json/fr.json +0 -374
  1173. package/msg/json/frr.json +0 -6
  1174. package/msg/json/gl.json +0 -338
  1175. package/msg/json/gn.json +0 -54
  1176. package/msg/json/gor.json +0 -87
  1177. package/msg/json/ha.json +0 -313
  1178. package/msg/json/hak.json +0 -17
  1179. package/msg/json/he.json +0 -355
  1180. package/msg/json/hi.json +0 -318
  1181. package/msg/json/hr.json +0 -337
  1182. package/msg/json/hrx.json +0 -287
  1183. package/msg/json/hsb.json +0 -128
  1184. package/msg/json/hu.json +0 -349
  1185. package/msg/json/hy.json +0 -337
  1186. package/msg/json/ia.json +0 -337
  1187. package/msg/json/id.json +0 -338
  1188. package/msg/json/ig.json +0 -323
  1189. package/msg/json/inh.json +0 -80
  1190. package/msg/json/is.json +0 -331
  1191. package/msg/json/it.json +0 -346
  1192. package/msg/json/ja.json +0 -362
  1193. package/msg/json/ka.json +0 -14
  1194. package/msg/json/kab.json +0 -323
  1195. package/msg/json/kbd-cyrl.json +0 -84
  1196. package/msg/json/km.json +0 -29
  1197. package/msg/json/kn.json +0 -333
  1198. package/msg/json/ko.json +0 -377
  1199. package/msg/json/ksh.json +0 -43
  1200. package/msg/json/ku-latn.json +0 -41
  1201. package/msg/json/ky.json +0 -71
  1202. package/msg/json/la.json +0 -6
  1203. package/msg/json/lb.json +0 -156
  1204. package/msg/json/lki.json +0 -282
  1205. package/msg/json/lo.json +0 -92
  1206. package/msg/json/lrc.json +0 -123
  1207. package/msg/json/lt.json +0 -321
  1208. package/msg/json/lv.json +0 -324
  1209. package/msg/json/mg.json +0 -58
  1210. package/msg/json/mk.json +0 -178
  1211. package/msg/json/ml.json +0 -35
  1212. package/msg/json/mnw.json +0 -90
  1213. package/msg/json/ms.json +0 -300
  1214. package/msg/json/my.json +0 -57
  1215. package/msg/json/mzn.json +0 -6
  1216. package/msg/json/nb.json +0 -331
  1217. package/msg/json/ne.json +0 -247
  1218. package/msg/json/nl.json +0 -358
  1219. package/msg/json/oc.json +0 -194
  1220. package/msg/json/olo.json +0 -37
  1221. package/msg/json/pa.json +0 -75
  1222. package/msg/json/pl.json +0 -358
  1223. package/msg/json/pms.json +0 -325
  1224. package/msg/json/ps.json +0 -50
  1225. package/msg/json/pt-br.json +0 -371
  1226. package/msg/json/pt.json +0 -360
  1227. package/msg/json/qqq.json +0 -430
  1228. package/msg/json/ro.json +0 -333
  1229. package/msg/json/ru.json +0 -363
  1230. package/msg/json/sc.json +0 -283
  1231. package/msg/json/sco.json +0 -11
  1232. package/msg/json/sd.json +0 -158
  1233. package/msg/json/shn.json +0 -109
  1234. package/msg/json/si.json +0 -16
  1235. package/msg/json/sk.json +0 -339
  1236. package/msg/json/skr-arab.json +0 -117
  1237. package/msg/json/sl.json +0 -355
  1238. package/msg/json/smn.json +0 -133
  1239. package/msg/json/sq.json +0 -343
  1240. package/msg/json/sr-latn.json +0 -324
  1241. package/msg/json/sr.json +0 -349
  1242. package/msg/json/sv.json +0 -350
  1243. package/msg/json/sw.json +0 -12
  1244. package/msg/json/synonyms.json +0 -22
  1245. package/msg/json/ta.json +0 -306
  1246. package/msg/json/tcy.json +0 -316
  1247. package/msg/json/tdd.json +0 -110
  1248. package/msg/json/te.json +0 -101
  1249. package/msg/json/th.json +0 -333
  1250. package/msg/json/ti.json +0 -50
  1251. package/msg/json/tl.json +0 -149
  1252. package/msg/json/tlh.json +0 -179
  1253. package/msg/json/tr.json +0 -370
  1254. package/msg/json/ug-arab.json +0 -180
  1255. package/msg/json/uk.json +0 -346
  1256. package/msg/json/ur.json +0 -118
  1257. package/msg/json/uz.json +0 -36
  1258. package/msg/json/vi.json +0 -345
  1259. package/msg/json/xmf.json +0 -99
  1260. package/msg/json/yo.json +0 -316
  1261. package/msg/json/zgh.json +0 -83
  1262. package/msg/json/zh-hans.json +0 -374
  1263. package/msg/json/zh-hant.json +0 -362
  1264. package/msg/messages.js +0 -1695
  1265. package/scripts/gulpfiles/appengine_tasks.mjs +0 -189
  1266. package/scripts/gulpfiles/build_tasks.mjs +0 -753
  1267. package/scripts/gulpfiles/config.mjs +0 -40
  1268. package/scripts/gulpfiles/docs_tasks.mjs +0 -146
  1269. package/scripts/gulpfiles/git_tasks.mjs +0 -167
  1270. package/scripts/gulpfiles/helper_tasks.mjs +0 -25
  1271. package/scripts/gulpfiles/package_tasks.mjs +0 -257
  1272. package/scripts/gulpfiles/release_tasks.mjs +0 -174
  1273. package/scripts/gulpfiles/test_tasks.mjs +0 -409
  1274. package/scripts/helpers.js +0 -74
  1275. package/scripts/i18n/common.py +0 -233
  1276. package/scripts/i18n/create_messages.py +0 -167
  1277. package/scripts/i18n/dedup_json.py +0 -72
  1278. package/scripts/i18n/js_to_json.py +0 -135
  1279. package/scripts/i18n/tests.py +0 -46
  1280. package/scripts/migration/renamings.json5 +0 -1599
  1281. package/scripts/package/index.js +0 -23
  1282. package/scripts/package/templates/umd-msg.template +0 -16
  1283. package/scripts/package/templates/umd.template +0 -13
  1284. package/scripts/themes/blockStyles_example.json +0 -11
  1285. package/scripts/themes/create_blockStyles.py +0 -184
  1286. package/scripts/tsick.js +0 -86
  1287. package/tests/browser/.mocharc.js +0 -7
  1288. package/tests/browser/test/basic_block_factory_test.mjs +0 -44
  1289. package/tests/browser/test/basic_block_test.mjs +0 -38
  1290. package/tests/browser/test/basic_playground_test.mjs +0 -461
  1291. package/tests/browser/test/block_undo_test.mjs +0 -50
  1292. package/tests/browser/test/clipboard_test.mjs +0 -611
  1293. package/tests/browser/test/delete_blocks_test.mjs +0 -217
  1294. package/tests/browser/test/extensive_test.mjs +0 -191
  1295. package/tests/browser/test/field_edits_test.mjs +0 -61
  1296. package/tests/browser/test/hooks.mjs +0 -23
  1297. package/tests/browser/test/mutator_test.mjs +0 -87
  1298. package/tests/browser/test/procedure_test.mjs +0 -109
  1299. package/tests/browser/test/test_setup.mjs +0 -623
  1300. package/tests/browser/test/toolbox_drag_test.mjs +0 -219
  1301. package/tests/browser/test/workspace_comment_test.mjs +0 -220
  1302. package/tests/compile/index.html +0 -43
  1303. package/tests/compile/main.js +0 -53
  1304. package/tests/compile/test_blocks.js +0 -47
  1305. package/tests/compile/webdriver.js +0 -81
  1306. package/tests/generators/functions.xml +0 -561
  1307. package/tests/generators/golden/generated.dart +0 -1604
  1308. package/tests/generators/golden/generated.js +0 -1552
  1309. package/tests/generators/golden/generated.lua +0 -1828
  1310. package/tests/generators/golden/generated.php +0 -1611
  1311. package/tests/generators/golden/generated.py +0 -1407
  1312. package/tests/generators/index.html +0 -408
  1313. package/tests/generators/lists.xml +0 -8675
  1314. package/tests/generators/logic.xml +0 -1019
  1315. package/tests/generators/loops1.xml +0 -345
  1316. package/tests/generators/loops2.xml +0 -891
  1317. package/tests/generators/loops3.xml +0 -735
  1318. package/tests/generators/math.xml +0 -2077
  1319. package/tests/generators/text.xml +0 -4651
  1320. package/tests/generators/unittest.js +0 -103
  1321. package/tests/generators/unittest_dart.js +0 -163
  1322. package/tests/generators/unittest_javascript.js +0 -167
  1323. package/tests/generators/unittest_lua.js +0 -165
  1324. package/tests/generators/unittest_php.js +0 -154
  1325. package/tests/generators/unittest_python.js +0 -138
  1326. package/tests/generators/variables.xml +0 -68
  1327. package/tests/generators/webdriver.js +0 -123
  1328. package/tests/media/200px.png +0 -0
  1329. package/tests/media/30px.png +0 -0
  1330. package/tests/media/50px.png +0 -0
  1331. package/tests/media/a.png +0 -0
  1332. package/tests/media/arrow.png +0 -0
  1333. package/tests/media/b.png +0 -0
  1334. package/tests/media/c.png +0 -0
  1335. package/tests/media/d.png +0 -0
  1336. package/tests/media/e.png +0 -0
  1337. package/tests/media/f.png +0 -0
  1338. package/tests/media/g.png +0 -0
  1339. package/tests/media/h.png +0 -0
  1340. package/tests/media/i.png +0 -0
  1341. package/tests/media/j.png +0 -0
  1342. package/tests/media/k.png +0 -0
  1343. package/tests/media/l.png +0 -0
  1344. package/tests/media/m.png +0 -0
  1345. package/tests/migration/renamings.schema.json +0 -59
  1346. package/tests/migration/validate-renamings.mjs +0 -63
  1347. package/tests/mocha/.mocharc.js +0 -6
  1348. package/tests/mocha/block_json_test.js +0 -777
  1349. package/tests/mocha/block_test.js +0 -2949
  1350. package/tests/mocha/blocks/lists_test.js +0 -238
  1351. package/tests/mocha/blocks/logic_ternary_test.js +0 -320
  1352. package/tests/mocha/blocks/loops_test.js +0 -56
  1353. package/tests/mocha/blocks/procedures_test.js +0 -2509
  1354. package/tests/mocha/blocks/variables_test.js +0 -345
  1355. package/tests/mocha/clipboard_test.js +0 -263
  1356. package/tests/mocha/comment_deserialization_test.js +0 -122
  1357. package/tests/mocha/comment_test.js +0 -215
  1358. package/tests/mocha/comment_view_test.js +0 -188
  1359. package/tests/mocha/connection_checker_test.js +0 -694
  1360. package/tests/mocha/connection_db_test.js +0 -363
  1361. package/tests/mocha/connection_test.js +0 -3738
  1362. package/tests/mocha/contextmenu_items_test.js +0 -653
  1363. package/tests/mocha/contextmenu_test.js +0 -73
  1364. package/tests/mocha/cursor_test.js +0 -922
  1365. package/tests/mocha/dialog_test.js +0 -168
  1366. package/tests/mocha/dropdowndiv_test.js +0 -458
  1367. package/tests/mocha/event_block_change_test.js +0 -126
  1368. package/tests/mocha/event_block_create_test.js +0 -109
  1369. package/tests/mocha/event_block_delete_test.js +0 -55
  1370. package/tests/mocha/event_block_drag_test.js +0 -36
  1371. package/tests/mocha/event_block_field_intermediate_change_test.js +0 -67
  1372. package/tests/mocha/event_block_move_test.js +0 -39
  1373. package/tests/mocha/event_bubble_open_test.js +0 -42
  1374. package/tests/mocha/event_click_test.js +0 -40
  1375. package/tests/mocha/event_comment_change_test.js +0 -39
  1376. package/tests/mocha/event_comment_collapse_test.js +0 -34
  1377. package/tests/mocha/event_comment_create_test.js +0 -38
  1378. package/tests/mocha/event_comment_delete_test.js +0 -38
  1379. package/tests/mocha/event_comment_drag_test.js +0 -35
  1380. package/tests/mocha/event_comment_move_test.js +0 -40
  1381. package/tests/mocha/event_comment_resize_test.js +0 -38
  1382. package/tests/mocha/event_selected_test.js +0 -41
  1383. package/tests/mocha/event_test.js +0 -1668
  1384. package/tests/mocha/event_theme_change_test.js +0 -36
  1385. package/tests/mocha/event_toolbox_item_select_test.js +0 -64
  1386. package/tests/mocha/event_trashcan_open_test.js +0 -36
  1387. package/tests/mocha/event_var_create_test.js +0 -54
  1388. package/tests/mocha/event_var_delete_test.js +0 -54
  1389. package/tests/mocha/event_var_rename_test.js +0 -39
  1390. package/tests/mocha/event_var_type_change_test.js +0 -43
  1391. package/tests/mocha/event_viewport_test.js +0 -39
  1392. package/tests/mocha/extensions_test.js +0 -613
  1393. package/tests/mocha/field_checkbox_test.js +0 -299
  1394. package/tests/mocha/field_colour_test.js +0 -395
  1395. package/tests/mocha/field_dropdown_test.js +0 -328
  1396. package/tests/mocha/field_image_test.js +0 -351
  1397. package/tests/mocha/field_label_serializable_test.js +0 -252
  1398. package/tests/mocha/field_label_test.js +0 -226
  1399. package/tests/mocha/field_number_test.js +0 -505
  1400. package/tests/mocha/field_registry_test.js +0 -115
  1401. package/tests/mocha/field_test.js +0 -821
  1402. package/tests/mocha/field_textinput_test.js +0 -593
  1403. package/tests/mocha/field_variable_test.js +0 -644
  1404. package/tests/mocha/flyout_test.js +0 -650
  1405. package/tests/mocha/focus_manager_test.js +0 -5979
  1406. package/tests/mocha/focusable_tree_traverser_test.js +0 -602
  1407. package/tests/mocha/generator_test.js +0 -233
  1408. package/tests/mocha/gesture_test.js +0 -133
  1409. package/tests/mocha/icon_test.js +0 -431
  1410. package/tests/mocha/index.html +0 -354
  1411. package/tests/mocha/input_test.js +0 -296
  1412. package/tests/mocha/insertion_marker_test.js +0 -432
  1413. package/tests/mocha/jso_deserialization_test.js +0 -848
  1414. package/tests/mocha/jso_serialization_test.js +0 -1068
  1415. package/tests/mocha/json_test.js +0 -303
  1416. package/tests/mocha/keyboard_navigation_controller_test.js +0 -37
  1417. package/tests/mocha/layering_test.js +0 -104
  1418. package/tests/mocha/menu_item_test.js +0 -176
  1419. package/tests/mocha/metrics_test.js +0 -671
  1420. package/tests/mocha/mutator_test.js +0 -87
  1421. package/tests/mocha/names_test.js +0 -97
  1422. package/tests/mocha/navigation_test.js +0 -876
  1423. package/tests/mocha/old_workspace_comment_test.js +0 -256
  1424. package/tests/mocha/procedure_map_test.js +0 -52
  1425. package/tests/mocha/rect_test.js +0 -1668
  1426. package/tests/mocha/registry_test.js +0 -281
  1427. package/tests/mocha/render_management_test.js +0 -127
  1428. package/tests/mocha/serializer_test.js +0 -2100
  1429. package/tests/mocha/shortcut_items_test.js +0 -563
  1430. package/tests/mocha/shortcut_registry_test.js +0 -533
  1431. package/tests/mocha/test_helpers/block_definitions.js +0 -204
  1432. package/tests/mocha/test_helpers/code_generation.js +0 -114
  1433. package/tests/mocha/test_helpers/common.js +0 -106
  1434. package/tests/mocha/test_helpers/events.js +0 -290
  1435. package/tests/mocha/test_helpers/fields.js +0 -310
  1436. package/tests/mocha/test_helpers/icon_mocks.js +0 -130
  1437. package/tests/mocha/test_helpers/procedures.js +0 -304
  1438. package/tests/mocha/test_helpers/serialization.js +0 -124
  1439. package/tests/mocha/test_helpers/setup_teardown.js +0 -232
  1440. package/tests/mocha/test_helpers/toolbox_definitions.js +0 -269
  1441. package/tests/mocha/test_helpers/user_input.js +0 -62
  1442. package/tests/mocha/test_helpers/variables.js +0 -27
  1443. package/tests/mocha/test_helpers/warnings.js +0 -83
  1444. package/tests/mocha/test_helpers/workspace.js +0 -1659
  1445. package/tests/mocha/theme_test.js +0 -307
  1446. package/tests/mocha/toast_test.js +0 -129
  1447. package/tests/mocha/toolbox_test.js +0 -821
  1448. package/tests/mocha/tooltip_test.js +0 -276
  1449. package/tests/mocha/touch_test.js +0 -109
  1450. package/tests/mocha/trashcan_test.js +0 -376
  1451. package/tests/mocha/utils_test.js +0 -557
  1452. package/tests/mocha/variable_map_test.js +0 -470
  1453. package/tests/mocha/variable_model_test.js +0 -85
  1454. package/tests/mocha/webdriver.js +0 -110
  1455. package/tests/mocha/widget_div_test.js +0 -427
  1456. package/tests/mocha/workspace_comment_test.js +0 -197
  1457. package/tests/mocha/workspace_svg_test.js +0 -922
  1458. package/tests/mocha/workspace_test.js +0 -24
  1459. package/tests/mocha/xml_test.js +0 -893
  1460. package/tests/mocha/zoom_controls_test.js +0 -81
  1461. package/tests/multi_playground.html +0 -482
  1462. package/tests/node/.mocharc.js +0 -6
  1463. package/tests/node/run_node_test.mjs +0 -191
  1464. package/tests/playground.html +0 -1280
  1465. package/tests/playgrounds/advanced_playground.html +0 -188
  1466. package/tests/playgrounds/iframe.html +0 -40
  1467. package/tests/playgrounds/screenshot.js +0 -123
  1468. package/tests/scripts/check_metadata.sh +0 -170
  1469. package/tests/scripts/load.mjs +0 -140
  1470. package/tests/scripts/setup_linux_env.sh +0 -7
  1471. package/tests/scripts/update_metadata.sh +0 -46
  1472. package/tests/themes/test_themes.js +0 -62
  1473. package/tests/typescript/README.md +0 -4
  1474. package/tests/typescript/src/field/different_user_input.ts +0 -81
  1475. package/tests/typescript/src/generators/dart.ts +0 -24
  1476. package/tests/typescript/src/generators/javascript.ts +0 -28
  1477. package/tests/typescript/src/generators/lua.ts +0 -24
  1478. package/tests/typescript/src/generators/php.ts +0 -24
  1479. package/tests/typescript/src/generators/python.ts +0 -24
  1480. package/tests/typescript/src/generators.ts +0 -33
  1481. package/tests/typescript/src/msg.ts +0 -20
  1482. package/tests/typescript/tsconfig.json +0 -20
  1483. package/tests/xml/README.txt +0 -11
  1484. package/tests/xml/blockly.xsd +0 -178
  1485. package/tests/xml/invalid.xml +0 -6
  1486. package/tests/xml/toolbox.xml +0 -311
  1487. package/tests/xml/workspace.xml +0 -114
  1488. package/tsconfig.json +0 -37
  1489. package/tsdoc.json +0 -25
  1490. package/typings/README.md +0 -5
  1491. package/typings/templates/blockly-header.template +0 -11
  1492. package/typings/templates/blockly-interfaces.template +0 -83
  1493. package/typings/templates/msg.template +0 -15
  1494. package/typings/tsconfig.json +0 -23
  1495. /package/{scripts/package/README.md → README.md} +0 -0
  1496. /package/{typings/blocks.d.ts → blocks.d.ts} +0 -0
  1497. /package/{scripts/package/core-node.js → core-node.js} +0 -0
  1498. /package/{typings/core.d.ts → core.d.ts} +0 -0
  1499. /package/{typings/dart.d.ts → dart.d.ts} +0 -0
  1500. /package/{typings/index.d.ts → index.d.ts} +0 -0
  1501. /package/{typings/javascript.d.ts → javascript.d.ts} +0 -0
  1502. /package/{typings/lua.d.ts → lua.d.ts} +0 -0
  1503. /package/{typings/msg → msg}/ab.d.ts +0 -0
  1504. /package/{typings/msg → msg}/ace.d.ts +0 -0
  1505. /package/{typings/msg → msg}/af.d.ts +0 -0
  1506. /package/{typings/msg → msg}/am.d.ts +0 -0
  1507. /package/{typings/msg → msg}/ar.d.ts +0 -0
  1508. /package/{typings/msg → msg}/ast.d.ts +0 -0
  1509. /package/{typings/msg → msg}/az.d.ts +0 -0
  1510. /package/{typings/msg → msg}/ba.d.ts +0 -0
  1511. /package/{typings/msg → msg}/bcc.d.ts +0 -0
  1512. /package/{typings/msg → msg}/be-tarask.d.ts +0 -0
  1513. /package/{typings/msg → msg}/be.d.ts +0 -0
  1514. /package/{typings/msg → msg}/bg.d.ts +0 -0
  1515. /package/{typings/msg → msg}/bn.d.ts +0 -0
  1516. /package/{typings/msg → msg}/br.d.ts +0 -0
  1517. /package/{typings/msg → msg}/bs.d.ts +0 -0
  1518. /package/{typings/msg → msg}/ca.d.ts +0 -0
  1519. /package/{typings/msg → msg}/cdo.d.ts +0 -0
  1520. /package/{typings/msg → msg}/ce.d.ts +0 -0
  1521. /package/{typings/msg → msg}/cs.d.ts +0 -0
  1522. /package/{typings/msg → msg}/da.d.ts +0 -0
  1523. /package/{typings/msg → msg}/de.d.ts +0 -0
  1524. /package/{typings/msg → msg}/diq.d.ts +0 -0
  1525. /package/{typings/msg → msg}/dtp.d.ts +0 -0
  1526. /package/{typings/msg → msg}/dty.d.ts +0 -0
  1527. /package/{typings/msg → msg}/ee.d.ts +0 -0
  1528. /package/{typings/msg → msg}/el.d.ts +0 -0
  1529. /package/{typings/msg → msg}/en-gb.d.ts +0 -0
  1530. /package/{typings/msg → msg}/en.d.ts +0 -0
  1531. /package/{typings/msg → msg}/eo.d.ts +0 -0
  1532. /package/{typings/msg → msg}/es.d.ts +0 -0
  1533. /package/{typings/msg → msg}/et.d.ts +0 -0
  1534. /package/{typings/msg → msg}/eu.d.ts +0 -0
  1535. /package/{typings/msg → msg}/fa.d.ts +0 -0
  1536. /package/{typings/msg → msg}/fi.d.ts +0 -0
  1537. /package/{typings/msg → msg}/fo.d.ts +0 -0
  1538. /package/{typings/msg → msg}/fr.d.ts +0 -0
  1539. /package/{typings/msg → msg}/frr.d.ts +0 -0
  1540. /package/{typings/msg → msg}/gl.d.ts +0 -0
  1541. /package/{typings/msg → msg}/gn.d.ts +0 -0
  1542. /package/{typings/msg → msg}/gor.d.ts +0 -0
  1543. /package/{typings/msg → msg}/ha.d.ts +0 -0
  1544. /package/{typings/msg → msg}/hak.d.ts +0 -0
  1545. /package/{typings/msg → msg}/he.d.ts +0 -0
  1546. /package/{typings/msg → msg}/hi.d.ts +0 -0
  1547. /package/{typings/msg → msg}/hr.d.ts +0 -0
  1548. /package/{typings/msg → msg}/hrx.d.ts +0 -0
  1549. /package/{typings/msg → msg}/hsb.d.ts +0 -0
  1550. /package/{typings/msg → msg}/hu.d.ts +0 -0
  1551. /package/{typings/msg → msg}/hy.d.ts +0 -0
  1552. /package/{typings/msg → msg}/ia.d.ts +0 -0
  1553. /package/{typings/msg → msg}/id.d.ts +0 -0
  1554. /package/{typings/msg → msg}/ig.d.ts +0 -0
  1555. /package/{typings/msg → msg}/inh.d.ts +0 -0
  1556. /package/{typings/msg → msg}/is.d.ts +0 -0
  1557. /package/{typings/msg → msg}/it.d.ts +0 -0
  1558. /package/{typings/msg → msg}/ja.d.ts +0 -0
  1559. /package/{typings/msg → msg}/ka.d.ts +0 -0
  1560. /package/{typings/msg → msg}/kab.d.ts +0 -0
  1561. /package/{typings/msg → msg}/kbd-cyrl.d.ts +0 -0
  1562. /package/{typings/msg → msg}/km.d.ts +0 -0
  1563. /package/{typings/msg → msg}/kn.d.ts +0 -0
  1564. /package/{typings/msg → msg}/ko.d.ts +0 -0
  1565. /package/{typings/msg → msg}/ksh.d.ts +0 -0
  1566. /package/{typings/msg → msg}/ku-latn.d.ts +0 -0
  1567. /package/{typings/msg → msg}/ky.d.ts +0 -0
  1568. /package/{typings/msg → msg}/la.d.ts +0 -0
  1569. /package/{typings/msg → msg}/lb.d.ts +0 -0
  1570. /package/{typings/msg → msg}/lki.d.ts +0 -0
  1571. /package/{typings/msg → msg}/lo.d.ts +0 -0
  1572. /package/{typings/msg → msg}/lrc.d.ts +0 -0
  1573. /package/{typings/msg → msg}/lt.d.ts +0 -0
  1574. /package/{typings/msg → msg}/lv.d.ts +0 -0
  1575. /package/{typings/msg → msg}/mg.d.ts +0 -0
  1576. /package/{typings/msg → msg}/mk.d.ts +0 -0
  1577. /package/{typings/msg → msg}/ml.d.ts +0 -0
  1578. /package/{typings/msg → msg}/mnw.d.ts +0 -0
  1579. /package/{typings/msg → msg}/ms.d.ts +0 -0
  1580. /package/{typings/msg → msg}/msg.d.ts +0 -0
  1581. /package/{typings/msg → msg}/my.d.ts +0 -0
  1582. /package/{typings/msg → msg}/mzn.d.ts +0 -0
  1583. /package/{typings/msg → msg}/nb.d.ts +0 -0
  1584. /package/{typings/msg → msg}/ne.d.ts +0 -0
  1585. /package/{typings/msg → msg}/nl.d.ts +0 -0
  1586. /package/{typings/msg → msg}/oc.d.ts +0 -0
  1587. /package/{typings/msg → msg}/olo.d.ts +0 -0
  1588. /package/{typings/msg → msg}/pa.d.ts +0 -0
  1589. /package/{typings/msg → msg}/pl.d.ts +0 -0
  1590. /package/{typings/msg → msg}/pms.d.ts +0 -0
  1591. /package/{typings/msg → msg}/ps.d.ts +0 -0
  1592. /package/{typings/msg → msg}/pt-br.d.ts +0 -0
  1593. /package/{typings/msg → msg}/pt.d.ts +0 -0
  1594. /package/{typings/msg → msg}/ro.d.ts +0 -0
  1595. /package/{typings/msg → msg}/ru.d.ts +0 -0
  1596. /package/{typings/msg → msg}/sc.d.ts +0 -0
  1597. /package/{typings/msg → msg}/sco.d.ts +0 -0
  1598. /package/{typings/msg → msg}/sd.d.ts +0 -0
  1599. /package/{typings/msg → msg}/shn.d.ts +0 -0
  1600. /package/{typings/msg → msg}/si.d.ts +0 -0
  1601. /package/{typings/msg → msg}/sk.d.ts +0 -0
  1602. /package/{typings/msg → msg}/skr-arab.d.ts +0 -0
  1603. /package/{typings/msg → msg}/sl.d.ts +0 -0
  1604. /package/{typings/msg → msg}/smn.d.ts +0 -0
  1605. /package/{typings/msg → msg}/sq.d.ts +0 -0
  1606. /package/{typings/msg → msg}/sr-latn.d.ts +0 -0
  1607. /package/{typings/msg → msg}/sr.d.ts +0 -0
  1608. /package/{typings/msg → msg}/sv.d.ts +0 -0
  1609. /package/{typings/msg → msg}/sw.d.ts +0 -0
  1610. /package/{typings/msg → msg}/ta.d.ts +0 -0
  1611. /package/{typings/msg → msg}/tcy.d.ts +0 -0
  1612. /package/{typings/msg → msg}/tdd.d.ts +0 -0
  1613. /package/{typings/msg → msg}/te.d.ts +0 -0
  1614. /package/{typings/msg → msg}/th.d.ts +0 -0
  1615. /package/{typings/msg → msg}/ti.d.ts +0 -0
  1616. /package/{typings/msg → msg}/tl.d.ts +0 -0
  1617. /package/{typings/msg → msg}/tlh.d.ts +0 -0
  1618. /package/{typings/msg → msg}/tr.d.ts +0 -0
  1619. /package/{typings/msg → msg}/ug-arab.d.ts +0 -0
  1620. /package/{typings/msg → msg}/uk.d.ts +0 -0
  1621. /package/{typings/msg → msg}/ur.d.ts +0 -0
  1622. /package/{typings/msg → msg}/uz.d.ts +0 -0
  1623. /package/{typings/msg → msg}/vi.d.ts +0 -0
  1624. /package/{typings/msg → msg}/xmf.d.ts +0 -0
  1625. /package/{typings/msg → msg}/yo.d.ts +0 -0
  1626. /package/{typings/msg → msg}/zgh.d.ts +0 -0
  1627. /package/{typings/msg → msg}/zh-hans.d.ts +0 -0
  1628. /package/{typings/msg → msg}/zh-hant.d.ts +0 -0
  1629. /package/{typings/php.d.ts → php.d.ts} +0 -0
  1630. /package/{typings/python.d.ts → python.d.ts} +0 -0
@@ -1,2509 +0,0 @@
1
- /**
2
- * @license
3
- * Copyright 2019 Google LLC
4
- * SPDX-License-Identifier: Apache-2.0
5
- */
6
-
7
- import * as Blockly from '../../../build/src/core/blockly.js';
8
- import {assert} from '../../../node_modules/chai/index.js';
9
- import {defineRowBlock} from '../test_helpers/block_definitions.js';
10
- import {
11
- assertCallBlockStructure,
12
- assertDefBlockStructure,
13
- createProcCallBlock,
14
- createProcDefBlock,
15
- MockProcedureModel,
16
- } from '../test_helpers/procedures.js';
17
- import {runSerializationTestSuite} from '../test_helpers/serialization.js';
18
- import {
19
- createGenUidStubWithReturns,
20
- sharedTestSetup,
21
- sharedTestTeardown,
22
- workspaceTeardown,
23
- } from '../test_helpers/setup_teardown.js';
24
-
25
- suite('Procedures', function () {
26
- setup(function () {
27
- sharedTestSetup.call(this, {fireEventsNow: false});
28
- this.workspace = Blockly.inject('blocklyDiv', {});
29
- this.workspace
30
- .getVariableMap()
31
- .createVariable('preCreatedVar', '', 'preCreatedVarId');
32
- this.workspace
33
- .getVariableMap()
34
- .createVariable('preCreatedTypedVar', 'type', 'preCreatedTypedVarId');
35
- defineRowBlock();
36
- this.variableMap = this.workspace.getVariableMap();
37
- });
38
-
39
- teardown(function () {
40
- sharedTestTeardown.call(this);
41
- });
42
-
43
- suite('renaming procedures', function () {
44
- test('callers are updated to have the new name', function () {
45
- const defBlock = createProcDefBlock(this.workspace);
46
- const callBlock = createProcCallBlock(this.workspace);
47
-
48
- defBlock.setFieldValue('new name', 'NAME');
49
-
50
- assert.equal(
51
- callBlock.getFieldValue('NAME'),
52
- 'new name',
53
- 'Expected the procedure block to be renamed',
54
- );
55
- });
56
-
57
- test(
58
- 'setting an illegal name results in both the ' +
59
- 'procedure and the caller getting the legal name',
60
- function () {
61
- createProcDefBlock(this.workspace, undefined, undefined, 'procA');
62
- const defBlockB = createProcDefBlock(
63
- this.workspace,
64
- undefined,
65
- undefined,
66
- 'procB',
67
- );
68
- const callBlockB = createProcCallBlock(
69
- this.workspace,
70
- undefined,
71
- 'procB',
72
- );
73
-
74
- defBlockB.setFieldValue('procA', 'NAME');
75
-
76
- assert.notEqual(
77
- defBlockB.getFieldValue('NAME'),
78
- 'procA',
79
- 'Expected the procedure def block to have a legal name',
80
- );
81
- assert.notEqual(
82
- callBlockB.getFieldValue('NAME'),
83
- 'procA',
84
- 'Expected the procedure call block to have a legal name',
85
- );
86
- },
87
- );
88
- });
89
-
90
- suite('adding procedure parameters', function () {
91
- test('the mutator flyout updates to avoid parameter name conflicts', async function () {
92
- const defBlock = createProcDefBlock(this.workspace);
93
- const mutatorIcon = defBlock.getIcon(Blockly.icons.MutatorIcon.TYPE);
94
- await mutatorIcon.setBubbleVisible(true);
95
- const mutatorWorkspace = mutatorIcon.getWorkspace();
96
- const origFlyoutParamName = mutatorWorkspace
97
- .getFlyout()
98
- .getWorkspace()
99
- .getTopBlocks(true)[0]
100
- .getFieldValue('NAME');
101
- Blockly.serialization.blocks.append(
102
- {
103
- 'type': 'procedures_mutatorarg',
104
- 'fields': {
105
- 'NAME': origFlyoutParamName,
106
- },
107
- },
108
- mutatorWorkspace,
109
- );
110
- this.clock.runAll();
111
-
112
- const newFlyoutParamName = mutatorWorkspace
113
- .getFlyout()
114
- .getWorkspace()
115
- .getTopBlocks(true)[0]
116
- .getFieldValue('NAME');
117
- assert.notEqual(
118
- newFlyoutParamName,
119
- origFlyoutParamName,
120
- 'Expected the flyout param to have updated to not conflict',
121
- );
122
- });
123
-
124
- test('adding a parameter to the procedure updates procedure defs', async function () {
125
- // Create a stack of container, parameter.
126
- const defBlock = createProcDefBlock(this.workspace);
127
- const mutatorIcon = defBlock.getIcon(Blockly.icons.MutatorIcon.TYPE);
128
- await mutatorIcon.setBubbleVisible(true);
129
- const mutatorWorkspace = mutatorIcon.getWorkspace();
130
- const containerBlock = mutatorWorkspace.getTopBlocks()[0];
131
- const paramBlock = mutatorWorkspace.newBlock('procedures_mutatorarg');
132
- paramBlock.setFieldValue('param1', 'NAME');
133
- containerBlock
134
- .getInput('STACK')
135
- .connection.connect(paramBlock.previousConnection);
136
- this.clock.runAll();
137
-
138
- assert.isNotNull(
139
- defBlock.getField('PARAMS'),
140
- 'Expected the params field to exist',
141
- );
142
- assert.isTrue(
143
- defBlock.getFieldValue('PARAMS').includes('param1'),
144
- 'Expected the params field to contain the name of the new param',
145
- );
146
- });
147
-
148
- test('adding a parameter to the procedure updates procedure callers', async function () {
149
- // Create a stack of container, parameter.
150
- const defBlock = createProcDefBlock(this.workspace);
151
- const callBlock = createProcCallBlock(this.workspace);
152
- const mutatorIcon = defBlock.getIcon(Blockly.icons.MutatorIcon.TYPE);
153
- await mutatorIcon.setBubbleVisible(true);
154
- const mutatorWorkspace = mutatorIcon.getWorkspace();
155
- const containerBlock = mutatorWorkspace.getTopBlocks()[0];
156
- const paramBlock = mutatorWorkspace.newBlock('procedures_mutatorarg');
157
- paramBlock.setFieldValue('param1', 'NAME');
158
- containerBlock
159
- .getInput('STACK')
160
- .connection.connect(paramBlock.previousConnection);
161
- this.clock.runAll();
162
-
163
- assert.isNotNull(
164
- callBlock.getInput('ARG0'),
165
- 'Expected the param input to exist',
166
- );
167
- assert.equal(
168
- callBlock.getFieldValue('ARGNAME0'),
169
- 'param1',
170
- 'Expected the params field to match the name of the new param',
171
- );
172
- });
173
-
174
- test('undoing adding a procedure parameter removes it', async function () {
175
- // Create a stack of container, parameter.
176
- const defBlock = createProcDefBlock(this.workspace);
177
- const mutatorIcon = defBlock.getIcon(Blockly.icons.MutatorIcon.TYPE);
178
- await mutatorIcon.setBubbleVisible(true);
179
- const mutatorWorkspace = mutatorIcon.getWorkspace();
180
- const containerBlock = mutatorWorkspace.getTopBlocks()[0];
181
- const paramBlock = mutatorWorkspace.newBlock('procedures_mutatorarg');
182
- paramBlock.setFieldValue('param1', 'NAME');
183
- containerBlock
184
- .getInput('STACK')
185
- .connection.connect(paramBlock.previousConnection);
186
- this.clock.runAll();
187
-
188
- this.workspace.undo();
189
-
190
- assert.isFalse(
191
- defBlock.getFieldValue('PARAMS').includes('param1'),
192
- 'Expected the params field to not contain the name of the new param',
193
- );
194
- });
195
-
196
- test(
197
- 'undoing and redoing adding a procedure parameter maintains ' +
198
- 'the same state',
199
- async function () {
200
- // Create a stack of container, parameter.
201
- const defBlock = createProcDefBlock(this.workspace);
202
- const mutatorIcon = defBlock.getIcon(Blockly.icons.MutatorIcon.TYPE);
203
- await mutatorIcon.setBubbleVisible(true);
204
- const mutatorWorkspace = mutatorIcon.getWorkspace();
205
- const containerBlock = mutatorWorkspace.getTopBlocks()[0];
206
- const paramBlock = mutatorWorkspace.newBlock('procedures_mutatorarg');
207
- paramBlock.setFieldValue('param1', 'NAME');
208
- containerBlock
209
- .getInput('STACK')
210
- .connection.connect(paramBlock.previousConnection);
211
- this.clock.runAll();
212
-
213
- this.workspace.undo();
214
- this.workspace.undo(/* redo= */ true);
215
-
216
- assert.isNotNull(
217
- defBlock.getField('PARAMS'),
218
- 'Expected the params field to exist',
219
- );
220
- assert.isTrue(
221
- defBlock.getFieldValue('PARAMS').includes('param1'),
222
- 'Expected the params field to contain the name of the new param',
223
- );
224
- },
225
- );
226
- });
227
-
228
- suite('deleting procedure parameters', function () {
229
- test('deleting a parameter from the procedure updates procedure defs', async function () {
230
- // Create a stack of container, parameter.
231
- const defBlock = createProcDefBlock(this.workspace);
232
- const mutatorIcon = defBlock.getIcon(Blockly.icons.MutatorIcon.TYPE);
233
- await mutatorIcon.setBubbleVisible(true);
234
- const mutatorWorkspace = mutatorIcon.getWorkspace();
235
- const containerBlock = mutatorWorkspace.getTopBlocks()[0];
236
- const paramBlock = mutatorWorkspace.newBlock('procedures_mutatorarg');
237
- paramBlock.setFieldValue('param1', 'NAME');
238
- containerBlock
239
- .getInput('STACK')
240
- .connection.connect(paramBlock.previousConnection);
241
- this.clock.runAll();
242
-
243
- paramBlock.checkAndDelete();
244
- this.clock.runAll();
245
-
246
- assert.isFalse(
247
- defBlock.getFieldValue('PARAMS').includes('param1'),
248
- 'Expected the params field to not contain the name of the new param',
249
- );
250
- });
251
-
252
- test('deleting a parameter from the procedure udpates procedure callers', async function () {
253
- // Create a stack of container, parameter.
254
- const defBlock = createProcDefBlock(this.workspace);
255
- const callBlock = createProcCallBlock(this.workspace);
256
- const mutatorIcon = defBlock.getIcon(Blockly.icons.MutatorIcon.TYPE);
257
- await mutatorIcon.setBubbleVisible(true);
258
- const mutatorWorkspace = mutatorIcon.getWorkspace();
259
- const containerBlock = mutatorWorkspace.getTopBlocks()[0];
260
- const paramBlock = mutatorWorkspace.newBlock('procedures_mutatorarg');
261
- paramBlock.setFieldValue('param1', 'NAME');
262
- containerBlock
263
- .getInput('STACK')
264
- .connection.connect(paramBlock.previousConnection);
265
- this.clock.runAll();
266
-
267
- paramBlock.checkAndDelete();
268
- this.clock.runAll();
269
-
270
- assert.isNull(
271
- callBlock.getInput('ARG0'),
272
- 'Expected the param input to not exist',
273
- );
274
- });
275
-
276
- test('undoing deleting a procedure parameter adds it', async function () {
277
- // Create a stack of container, parameter.
278
- const defBlock = createProcDefBlock(this.workspace);
279
- const mutatorIcon = defBlock.getIcon(Blockly.icons.MutatorIcon.TYPE);
280
- await mutatorIcon.setBubbleVisible(true);
281
- const mutatorWorkspace = mutatorIcon.getWorkspace();
282
- const containerBlock = mutatorWorkspace.getTopBlocks()[0];
283
- const paramBlock = mutatorWorkspace.newBlock('procedures_mutatorarg');
284
- paramBlock.setFieldValue('param1', 'NAME');
285
- containerBlock
286
- .getInput('STACK')
287
- .connection.connect(paramBlock.previousConnection);
288
- this.clock.runAll();
289
- paramBlock.checkAndDelete();
290
- this.clock.runAll();
291
-
292
- this.workspace.undo();
293
-
294
- assert.isTrue(
295
- defBlock.getFieldValue('PARAMS').includes('param1'),
296
- 'Expected the params field to contain the name of the new param',
297
- );
298
- });
299
-
300
- test(
301
- 'undoing and redoing deleting a procedure parameter maintains ' +
302
- 'the same state',
303
- async function () {
304
- // Create a stack of container, parameter.
305
- const defBlock = createProcDefBlock(this.workspace);
306
- const mutatorIcon = defBlock.getIcon(Blockly.icons.MutatorIcon.TYPE);
307
- await mutatorIcon.setBubbleVisible(true);
308
- const mutatorWorkspace = mutatorIcon.getWorkspace();
309
- const containerBlock = mutatorWorkspace.getTopBlocks()[0];
310
- const paramBlock = mutatorWorkspace.newBlock('procedures_mutatorarg');
311
- paramBlock.setFieldValue('param1', 'NAME');
312
- containerBlock
313
- .getInput('STACK')
314
- .connection.connect(paramBlock.previousConnection);
315
- this.clock.runAll();
316
- paramBlock.checkAndDelete();
317
- this.clock.runAll();
318
-
319
- this.workspace.undo();
320
- this.workspace.undo(/* redo= */ true);
321
-
322
- assert.isFalse(
323
- defBlock.getFieldValue('PARAMS').includes('param1'),
324
- 'Expected the params field to not contain the name of the new param',
325
- );
326
- },
327
- );
328
- });
329
-
330
- suite('renaming procedure parameters', function () {
331
- test('defs are updated for parameter renames', async function () {
332
- // Create a stack of container, parameter.
333
- const defBlock = createProcDefBlock(this.workspace);
334
- const mutatorIcon = defBlock.getIcon(Blockly.icons.MutatorIcon.TYPE);
335
- await mutatorIcon.setBubbleVisible(true);
336
- const mutatorWorkspace = mutatorIcon.getWorkspace();
337
- const containerBlock = mutatorWorkspace.getTopBlocks()[0];
338
- const paramBlock = mutatorWorkspace.newBlock('procedures_mutatorarg');
339
- paramBlock.setFieldValue('param1', 'NAME');
340
- containerBlock
341
- .getInput('STACK')
342
- .connection.connect(paramBlock.previousConnection);
343
- this.clock.runAll();
344
-
345
- paramBlock.setFieldValue('new name', 'NAME');
346
- this.clock.runAll();
347
-
348
- assert.isNotNull(
349
- defBlock.getField('PARAMS'),
350
- 'Expected the params field to exist',
351
- );
352
- assert.isTrue(
353
- defBlock.getFieldValue('PARAMS').includes('new name'),
354
- 'Expected the params field to contain the new name of the param',
355
- );
356
- });
357
-
358
- test('defs are updated for parameter renames when two params exist', async function () {
359
- // Create a stack of container, parameter.
360
- const defBlock = createProcDefBlock(this.workspace);
361
- const mutatorIcon = defBlock.getIcon(Blockly.icons.MutatorIcon.TYPE);
362
- await mutatorIcon.setBubbleVisible(true);
363
- const mutatorWorkspace = mutatorIcon.getWorkspace();
364
- const containerBlock = mutatorWorkspace.getTopBlocks()[0];
365
- const paramBlock1 = mutatorWorkspace.newBlock('procedures_mutatorarg');
366
- paramBlock1.setFieldValue('param1', 'NAME');
367
- const paramBlock2 = mutatorWorkspace.newBlock('procedures_mutatorarg');
368
- paramBlock2.setFieldValue('param2', 'NAME');
369
- containerBlock
370
- .getInput('STACK')
371
- .connection.connect(paramBlock1.previousConnection);
372
- paramBlock1.nextConnection.connect(paramBlock2.previousConnection);
373
- this.clock.runAll();
374
-
375
- paramBlock1.setFieldValue('new name', 'NAME');
376
- this.clock.runAll();
377
-
378
- assert.isNotNull(
379
- defBlock.getField('PARAMS'),
380
- 'Expected the params field to exist',
381
- );
382
- assert.isTrue(
383
- defBlock.getFieldValue('PARAMS').includes('new name'),
384
- 'Expected the params field to contain the new name of the param',
385
- );
386
- });
387
-
388
- test('callers are updated for parameter renames', async function () {
389
- // Create a stack of container, parameter.
390
- const defBlock = createProcDefBlock(this.workspace);
391
- const callBlock = createProcCallBlock(this.workspace);
392
- const mutatorIcon = defBlock.getIcon(Blockly.icons.MutatorIcon.TYPE);
393
- await mutatorIcon.setBubbleVisible(true);
394
- const mutatorWorkspace = mutatorIcon.getWorkspace();
395
- const containerBlock = mutatorWorkspace.getTopBlocks()[0];
396
- const paramBlock = mutatorWorkspace.newBlock('procedures_mutatorarg');
397
- paramBlock.setFieldValue('param1', 'NAME');
398
- containerBlock
399
- .getInput('STACK')
400
- .connection.connect(paramBlock.previousConnection);
401
- this.clock.runAll();
402
-
403
- paramBlock.setFieldValue('new name', 'NAME');
404
- this.clock.runAll();
405
-
406
- assert.isNotNull(
407
- callBlock.getInput('ARG0'),
408
- 'Expected the param input to exist',
409
- );
410
- assert.equal(
411
- callBlock.getFieldValue('ARGNAME0'),
412
- 'new name',
413
- 'Expected the params field to match the name of the new param',
414
- );
415
- });
416
-
417
- test('variables associated with procedure parameters are not renamed', async function () {
418
- // Create a stack of container, parameter.
419
- const defBlock = createProcDefBlock(this.workspace);
420
- const callBlock = createProcCallBlock(this.workspace);
421
- const mutatorIcon = defBlock.getIcon(Blockly.icons.MutatorIcon.TYPE);
422
- await mutatorIcon.setBubbleVisible(true);
423
- const mutatorWorkspace = mutatorIcon.getWorkspace();
424
- const containerBlock = mutatorWorkspace.getTopBlocks()[0];
425
- const paramBlock = mutatorWorkspace.newBlock('procedures_mutatorarg');
426
- paramBlock.setFieldValue('param1', 'NAME');
427
- containerBlock
428
- .getInput('STACK')
429
- .connection.connect(paramBlock.previousConnection);
430
- this.clock.runAll();
431
-
432
- paramBlock.setFieldValue('param2', 'NAME');
433
- this.clock.runAll();
434
-
435
- assert.isNotNull(
436
- this.workspace.getVariableMap().getVariable('param1', ''),
437
- 'Expected the old variable to continue to exist',
438
- );
439
- });
440
-
441
- test('renaming a variable associated with a parameter updates procedure defs', async function () {
442
- // Create a stack of container, parameter.
443
- const defBlock = createProcDefBlock(this.workspace);
444
- const mutatorIcon = defBlock.getIcon(Blockly.icons.MutatorIcon.TYPE);
445
- await mutatorIcon.setBubbleVisible(true);
446
- const mutatorWorkspace = mutatorIcon.getWorkspace();
447
- const containerBlock = mutatorWorkspace.getTopBlocks()[0];
448
- const paramBlock = mutatorWorkspace.newBlock('procedures_mutatorarg');
449
- paramBlock.setFieldValue('param1', 'NAME');
450
- containerBlock
451
- .getInput('STACK')
452
- .connection.connect(paramBlock.previousConnection);
453
- this.clock.runAll();
454
- mutatorIcon.setBubbleVisible(false);
455
-
456
- const variable = this.workspace
457
- .getVariableMap()
458
- .getVariable('param1', '');
459
- this.variableMap.renameVariable(variable, 'new name');
460
-
461
- assert.isNotNull(
462
- defBlock.getField('PARAMS'),
463
- 'Expected the params field to exist',
464
- );
465
- assert.isTrue(
466
- defBlock.getFieldValue('PARAMS').includes('new name'),
467
- 'Expected the params field to contain the new name of the param',
468
- );
469
- });
470
-
471
- test('renaming a variable associated with a parameter updates mutator parameters', async function () {
472
- // Create a stack of container, parameter.
473
- const defBlock = createProcDefBlock(this.workspace);
474
- const mutatorIcon = defBlock.getIcon(Blockly.icons.MutatorIcon.TYPE);
475
- await mutatorIcon.setBubbleVisible(true);
476
- const mutatorWorkspace = mutatorIcon.getWorkspace();
477
- const containerBlock = mutatorWorkspace.getTopBlocks()[0];
478
- const paramBlock = mutatorWorkspace.newBlock('procedures_mutatorarg');
479
- paramBlock.setFieldValue('param1', 'NAME');
480
- containerBlock
481
- .getInput('STACK')
482
- .connection.connect(paramBlock.previousConnection);
483
- this.clock.runAll();
484
-
485
- const variable = this.workspace
486
- .getVariableMap()
487
- .getVariable('param1', '');
488
- this.variableMap.renameVariable(variable, 'new name');
489
-
490
- assert.equal(
491
- paramBlock.getFieldValue('NAME'),
492
- 'new name',
493
- 'Expected the params field to contain the new name of the param',
494
- );
495
- });
496
-
497
- test('renaming a variable associated with a parameter updates procedure callers', async function () {
498
- // Create a stack of container, parameter.
499
- const defBlock = createProcDefBlock(this.workspace);
500
- const callBlock = createProcCallBlock(this.workspace);
501
- const mutatorIcon = defBlock.getIcon(Blockly.icons.MutatorIcon.TYPE);
502
- await mutatorIcon.setBubbleVisible(true);
503
- const mutatorWorkspace = mutatorIcon.getWorkspace();
504
- const containerBlock = mutatorWorkspace.getTopBlocks()[0];
505
- const paramBlock = mutatorWorkspace.newBlock('procedures_mutatorarg');
506
- paramBlock.setFieldValue('param1', 'NAME');
507
- containerBlock
508
- .getInput('STACK')
509
- .connection.connect(paramBlock.previousConnection);
510
- this.clock.runAll();
511
- mutatorIcon.setBubbleVisible(false);
512
-
513
- const variable = this.workspace
514
- .getVariableMap()
515
- .getVariable('param1', '');
516
- this.variableMap.renameVariable(variable, 'new name');
517
-
518
- assert.isNotNull(
519
- callBlock.getInput('ARG0'),
520
- 'Expected the param input to exist',
521
- );
522
- assert.equal(
523
- callBlock.getFieldValue('ARGNAME0'),
524
- 'new name',
525
- 'Expected the params field to match the name of the new param',
526
- );
527
- });
528
-
529
- test('coalescing a variable associated with a parameter updates procedure defs', async function () {
530
- // Create a stack of container, parameter.
531
- const defBlock = createProcDefBlock(this.workspace);
532
- const mutatorIcon = defBlock.getIcon(Blockly.icons.MutatorIcon.TYPE);
533
- await mutatorIcon.setBubbleVisible(true);
534
- const mutatorWorkspace = mutatorIcon.getWorkspace();
535
- const containerBlock = mutatorWorkspace.getTopBlocks()[0];
536
- const paramBlock = mutatorWorkspace.newBlock('procedures_mutatorarg');
537
- paramBlock.setFieldValue('param1', 'NAME');
538
- containerBlock
539
- .getInput('STACK')
540
- .connection.connect(paramBlock.previousConnection);
541
- this.clock.runAll();
542
- mutatorIcon.setBubbleVisible(false);
543
-
544
- const variable = this.workspace
545
- .getVariableMap()
546
- .getVariable('param1', '');
547
- this.variableMap.renameVariable(variable, 'preCreatedVar');
548
-
549
- assert.isNotNull(
550
- defBlock.getField('PARAMS'),
551
- 'Expected the params field to exist',
552
- );
553
- assert.isTrue(
554
- defBlock.getFieldValue('PARAMS').includes('preCreatedVar'),
555
- 'Expected the params field to contain the new name of the param',
556
- );
557
- });
558
-
559
- test('coalescing a variable associated with a parameter updates mutator parameters', async function () {
560
- // Create a stack of container, parameter.
561
- const defBlock = createProcDefBlock(this.workspace);
562
- const mutatorIcon = defBlock.getIcon(Blockly.icons.MutatorIcon.TYPE);
563
- await mutatorIcon.setBubbleVisible(true);
564
- const mutatorWorkspace = mutatorIcon.getWorkspace();
565
- const containerBlock = mutatorWorkspace.getTopBlocks()[0];
566
- const paramBlock = mutatorWorkspace.newBlock('procedures_mutatorarg');
567
- paramBlock.setFieldValue('param1', 'NAME');
568
- containerBlock
569
- .getInput('STACK')
570
- .connection.connect(paramBlock.previousConnection);
571
- this.clock.runAll();
572
-
573
- const variable = this.workspace
574
- .getVariableMap()
575
- .getVariable('param1', '');
576
- this.variableMap.renameVariable(variable, 'preCreatedVar');
577
-
578
- assert.equal(
579
- paramBlock.getFieldValue('NAME'),
580
- 'preCreatedVar',
581
- 'Expected the params field to contain the new name of the param',
582
- );
583
- });
584
-
585
- test('coalescing a variable associated with a parameter updates procedure callers', async function () {
586
- // Create a stack of container, parameter.
587
- const defBlock = createProcDefBlock(this.workspace);
588
- const callBlock = createProcCallBlock(this.workspace);
589
- const mutatorIcon = defBlock.getIcon(Blockly.icons.MutatorIcon.TYPE);
590
- await mutatorIcon.setBubbleVisible(true);
591
- const mutatorWorkspace = mutatorIcon.getWorkspace();
592
- const containerBlock = mutatorWorkspace.getTopBlocks()[0];
593
- const paramBlock = mutatorWorkspace.newBlock('procedures_mutatorarg');
594
- paramBlock.setFieldValue('param1', 'NAME');
595
- containerBlock
596
- .getInput('STACK')
597
- .connection.connect(paramBlock.previousConnection);
598
- this.clock.runAll();
599
- mutatorIcon.setBubbleVisible(false);
600
-
601
- const variable = this.workspace
602
- .getVariableMap()
603
- .getVariable('param1', '');
604
- this.variableMap.renameVariable(variable, 'preCreatedVar');
605
-
606
- assert.isNotNull(
607
- callBlock.getInput('ARG0'),
608
- 'Expected the param input to exist',
609
- );
610
- assert.equal(
611
- callBlock.getFieldValue('ARGNAME0'),
612
- 'preCreatedVar',
613
- 'Expected the params field to match the name of the new param',
614
- );
615
- });
616
-
617
- test.skip(
618
- 'renaming a variable such that you get a parameter ' +
619
- 'conflict does... something!',
620
- function () {},
621
- );
622
-
623
- test('undoing renaming a procedure parameter reverts the change', async function () {
624
- // Create a stack of container, parameter.
625
- const defBlock = createProcDefBlock(this.workspace);
626
- const mutatorIcon = defBlock.getIcon(Blockly.icons.MutatorIcon.TYPE);
627
- await mutatorIcon.setBubbleVisible(true);
628
- const mutatorWorkspace = mutatorIcon.getWorkspace();
629
- const containerBlock = mutatorWorkspace.getTopBlocks()[0];
630
- const paramBlock = mutatorWorkspace.newBlock('procedures_mutatorarg');
631
- paramBlock.setFieldValue('param1', 'NAME');
632
- containerBlock
633
- .getInput('STACK')
634
- .connection.connect(paramBlock.previousConnection);
635
- this.clock.runAll();
636
- Blockly.Events.setGroup(true);
637
- paramBlock.setFieldValue('n', 'NAME');
638
- this.clock.runAll();
639
- paramBlock.setFieldValue('ne', 'NAME');
640
- this.clock.runAll();
641
- paramBlock.setFieldValue('new', 'NAME');
642
- this.clock.runAll();
643
- Blockly.Events.setGroup(false);
644
-
645
- this.workspace.undo();
646
- this.clock.runAll();
647
-
648
- assert.isTrue(
649
- defBlock.getFieldValue('PARAMS').includes('param1'),
650
- 'Expected the params field to contain the old name of the param',
651
- );
652
- });
653
-
654
- test('undoing and redoing renaming a procedure maintains the same state', async function () {
655
- // Create a stack of container, parameter.
656
- const defBlock = createProcDefBlock(this.workspace);
657
- const mutatorIcon = defBlock.getIcon(Blockly.icons.MutatorIcon.TYPE);
658
- await mutatorIcon.setBubbleVisible(true);
659
- const mutatorWorkspace = mutatorIcon.getWorkspace();
660
- const containerBlock = mutatorWorkspace.getTopBlocks()[0];
661
- const paramBlock = mutatorWorkspace.newBlock('procedures_mutatorarg');
662
- paramBlock.setFieldValue('param1', 'NAME');
663
- containerBlock
664
- .getInput('STACK')
665
- .connection.connect(paramBlock.previousConnection);
666
- this.clock.runAll();
667
- Blockly.Events.setGroup(true);
668
- paramBlock.setFieldValue('n', 'NAME');
669
- this.clock.runAll();
670
- paramBlock.setFieldValue('ne', 'NAME');
671
- this.clock.runAll();
672
- paramBlock.setFieldValue('new', 'NAME');
673
- this.clock.runAll();
674
- Blockly.Events.setGroup(false);
675
-
676
- this.workspace.undo();
677
- this.workspace.undo(/* redo= */ true);
678
-
679
- assert.isTrue(
680
- defBlock.getFieldValue('PARAMS').includes('new'),
681
- 'Expected the params field to contain the new name of the param',
682
- );
683
- });
684
- });
685
-
686
- suite('reordering procedure parameters', function () {
687
- test('reordering procedure parameters updates procedure blocks', async function () {
688
- // Create a stack of container, parameter, parameter.
689
- const defBlock = createProcDefBlock(this.workspace);
690
- const mutatorIcon = defBlock.getIcon(Blockly.icons.MutatorIcon.TYPE);
691
- await mutatorIcon.setBubbleVisible(true);
692
- const mutatorWorkspace = mutatorIcon.getWorkspace();
693
- const containerBlock = mutatorWorkspace.getTopBlocks()[0];
694
- const paramBlock1 = mutatorWorkspace.newBlock('procedures_mutatorarg');
695
- paramBlock1.setFieldValue('param1', 'NAME');
696
- const paramBlock2 = mutatorWorkspace.newBlock('procedures_mutatorarg');
697
- paramBlock2.setFieldValue('param2', 'NAME');
698
- containerBlock
699
- .getInput('STACK')
700
- .connection.connect(paramBlock1.previousConnection);
701
- paramBlock1.nextConnection.connect(paramBlock2.previousConnection);
702
- this.clock.runAll();
703
-
704
- // Reorder the parameters.
705
- paramBlock2.previousConnection.disconnect();
706
- paramBlock1.previousConnection.disconnect();
707
- containerBlock
708
- .getInput('STACK')
709
- .connection.connect(paramBlock2.previousConnection);
710
- paramBlock2.nextConnection.connect(paramBlock1.previousConnection);
711
- this.clock.runAll();
712
-
713
- assert.isNotNull(
714
- defBlock.getField('PARAMS'),
715
- 'Expected the params field to exist',
716
- );
717
- assert.isTrue(
718
- defBlock.getFieldValue('PARAMS').includes('param2, param1'),
719
- 'Expected the params field order to match the parameter order',
720
- );
721
- });
722
-
723
- test('reordering procedure parameters updates caller blocks', async function () {
724
- // Create a stack of container, parameter, parameter.
725
- const defBlock = createProcDefBlock(this.workspace);
726
- const callBlock = createProcCallBlock(this.workspace);
727
- const mutatorIcon = defBlock.getIcon(Blockly.icons.MutatorIcon.TYPE);
728
- await mutatorIcon.setBubbleVisible(true);
729
- const mutatorWorkspace = mutatorIcon.getWorkspace();
730
- const containerBlock = mutatorWorkspace.getTopBlocks()[0];
731
- const paramBlock1 = mutatorWorkspace.newBlock('procedures_mutatorarg');
732
- paramBlock1.setFieldValue('param1', 'NAME');
733
- const paramBlock2 = mutatorWorkspace.newBlock('procedures_mutatorarg');
734
- paramBlock2.setFieldValue('param2', 'NAME');
735
- containerBlock
736
- .getInput('STACK')
737
- .connection.connect(paramBlock1.previousConnection);
738
- paramBlock1.nextConnection.connect(paramBlock2.previousConnection);
739
- this.clock.runAll();
740
-
741
- // Reorder the parameters.
742
- paramBlock2.previousConnection.disconnect();
743
- paramBlock1.previousConnection.disconnect();
744
- containerBlock
745
- .getInput('STACK')
746
- .connection.connect(paramBlock2.previousConnection);
747
- paramBlock2.nextConnection.connect(paramBlock1.previousConnection);
748
- this.clock.runAll();
749
-
750
- assert.isNotNull(
751
- callBlock.getInput('ARG0'),
752
- 'Expected the param input to exist',
753
- );
754
- assert.equal(
755
- callBlock.getFieldValue('ARGNAME0'),
756
- 'param2',
757
- 'Expected the params field to match the name of the second param',
758
- );
759
- assert.isNotNull(
760
- callBlock.getInput('ARG1'),
761
- 'Expected the param input to exist',
762
- );
763
- assert.equal(
764
- callBlock.getFieldValue('ARGNAME1'),
765
- 'param1',
766
- 'Expected the params field to match the name of the first param',
767
- );
768
- });
769
-
770
- test(
771
- 'reordering procedure parameters reorders the blocks ' +
772
- 'attached to caller inputs',
773
- async function () {
774
- // Create a stack of container, parameter, parameter.
775
- const defBlock = createProcDefBlock(this.workspace);
776
- const callBlock = createProcCallBlock(this.workspace);
777
- const mutatorIcon = defBlock.getIcon(Blockly.icons.MutatorIcon.TYPE);
778
- await mutatorIcon.setBubbleVisible(true);
779
- const mutatorWorkspace = mutatorIcon.getWorkspace();
780
- const containerBlock = mutatorWorkspace.getTopBlocks()[0];
781
- const paramBlock1 = mutatorWorkspace.newBlock('procedures_mutatorarg');
782
- paramBlock1.setFieldValue('param1', 'NAME');
783
- const paramBlock2 = mutatorWorkspace.newBlock('procedures_mutatorarg');
784
- paramBlock2.setFieldValue('param2', 'NAME');
785
- containerBlock
786
- .getInput('STACK')
787
- .connection.connect(paramBlock1.previousConnection);
788
- paramBlock1.nextConnection.connect(paramBlock2.previousConnection);
789
- this.clock.runAll();
790
-
791
- // Add args to the parameter inputs on the caller.
792
- const block1 = this.workspace.newBlock('text');
793
- const block2 = this.workspace.newBlock('text');
794
- callBlock.getInput('ARG0').connection.connect(block1.outputConnection);
795
- callBlock.getInput('ARG1').connection.connect(block2.outputConnection);
796
-
797
- // Reorder the parameters.
798
- paramBlock2.previousConnection.disconnect();
799
- paramBlock1.previousConnection.disconnect();
800
- containerBlock
801
- .getInput('STACK')
802
- .connection.connect(paramBlock2.previousConnection);
803
- paramBlock2.nextConnection.connect(paramBlock1.previousConnection);
804
- this.clock.runAll();
805
-
806
- assert.equal(
807
- callBlock.getInputTargetBlock('ARG0'),
808
- block2,
809
- 'Expected the second block to be in the first slot',
810
- );
811
- assert.equal(
812
- callBlock.getInputTargetBlock('ARG1'),
813
- block1,
814
- 'Expected the first block to be in the second slot',
815
- );
816
- },
817
- );
818
- });
819
-
820
- suite('enabling and disabling procedure blocks', function () {
821
- test(
822
- 'if a procedure definition is disabled, the procedure caller ' +
823
- 'is also disabled',
824
- function () {
825
- const defBlock = createProcDefBlock(this.workspace);
826
- const callBlock = createProcCallBlock(this.workspace);
827
-
828
- defBlock.setDisabledReason(true, 'MANUALLY_DISABLED');
829
- this.clock.runAll();
830
-
831
- assert.isFalse(
832
- callBlock.isEnabled(),
833
- 'Expected the caller block to be disabled',
834
- );
835
- },
836
- );
837
-
838
- test(
839
- 'if a procedure definition is invalid, the procedure caller ' +
840
- 'is also invalid',
841
- function () {
842
- const defBlock = createProcDefBlock(this.workspace);
843
- const callBlock = createProcCallBlock(this.workspace);
844
-
845
- defBlock.setDisabledReason(true, 'test reason');
846
- this.clock.runAll();
847
-
848
- assert.isFalse(
849
- callBlock.isEnabled(),
850
- 'Expected the caller block to be invalid',
851
- );
852
- },
853
- );
854
-
855
- test(
856
- 'if a procedure definition is enabled, the procedure caller ' +
857
- 'is also enabled',
858
- function () {
859
- const defBlock = createProcDefBlock(this.workspace);
860
- const callBlock = createProcCallBlock(this.workspace);
861
- defBlock.setDisabledReason(true, 'MANUALLY_DISABLED');
862
- this.clock.runAll();
863
-
864
- defBlock.setDisabledReason(false, 'MANUALLY_DISABLED');
865
- this.clock.runAll();
866
-
867
- assert.isTrue(
868
- callBlock.isEnabled(),
869
- 'Expected the caller block to be enabled',
870
- );
871
- },
872
- );
873
-
874
- test(
875
- 'if a procedure caller block was already disabled before ' +
876
- 'its definition was disabled, it is not reenabled',
877
- function () {
878
- this.workspace.options.disable = true;
879
- const defBlock = createProcDefBlock(this.workspace);
880
- const callBlock = createProcCallBlock(this.workspace);
881
- this.clock.runAll();
882
- callBlock.setDisabledReason(true, 'MANUALLY_DISABLED');
883
- this.clock.runAll();
884
- defBlock.setDisabledReason(true, 'MANUALLY_DISABLED');
885
- this.clock.runAll();
886
-
887
- defBlock.setDisabledReason(false, 'MANUALLY_DISABLED');
888
- this.clock.runAll();
889
-
890
- assert.isFalse(
891
- callBlock.isEnabled(),
892
- 'Expected the caller block to continue to be disabled',
893
- );
894
- },
895
- );
896
- });
897
-
898
- suite('procedures_ifreturn blocks', function () {
899
- test('ifreturn block is invalid outside of def block', function () {
900
- const ifreturnBlock = Blockly.serialization.blocks.append(
901
- {'type': 'procedures_ifreturn'},
902
- this.workspace,
903
- );
904
- this.clock.runAll();
905
- assert.isFalse(
906
- ifreturnBlock.isEnabled(),
907
- 'Expected the ifreturn block to be invalid',
908
- );
909
- });
910
-
911
- test('ifreturn block is valid inside of def block', function () {
912
- const defBlock = createProcDefBlock(this.workspace);
913
- const ifreturnBlock = Blockly.serialization.blocks.append(
914
- {'type': 'procedures_ifreturn'},
915
- this.workspace,
916
- );
917
- defBlock
918
- .getInput('STACK')
919
- .connection.connect(ifreturnBlock.previousConnection);
920
- this.clock.runAll();
921
- assert.isTrue(
922
- ifreturnBlock.isEnabled(),
923
- 'Expected the ifreturn block to be valid',
924
- );
925
- });
926
- });
927
-
928
- suite('deleting procedure blocks', function () {
929
- test(
930
- 'when the procedure definition block is deleted, all of its ' +
931
- 'associated callers are deleted as well',
932
- function () {
933
- const defBlock = createProcDefBlock(this.workspace);
934
- const callBlock1 = createProcCallBlock(this.workspace);
935
- const callBlock2 = createProcCallBlock(this.workspace);
936
-
937
- this.clock.runAll();
938
- defBlock.dispose();
939
- this.clock.runAll();
940
-
941
- assert.isTrue(
942
- callBlock1.disposed,
943
- 'Expected the first caller to be disposed',
944
- );
945
- assert.isTrue(
946
- callBlock2.disposed,
947
- 'Expected the second caller to be disposed',
948
- );
949
- },
950
- );
951
- });
952
-
953
- suite('caller blocks creating new def blocks', function () {
954
- setup(function () {
955
- this.TEST_VAR_ID = 'test-id';
956
- this.genUidStub = createGenUidStubWithReturns(this.TEST_VAR_ID);
957
- });
958
-
959
- suite('xml', function () {
960
- test('callers without defs create new defs', function () {
961
- const callBlock = Blockly.Xml.domToBlock(
962
- Blockly.utils.xml.textToDom(`
963
- <block type="procedures_callreturn">
964
- <mutation name="do something"/>
965
- </block>`),
966
- this.workspace,
967
- );
968
- this.clock.runAll();
969
- assertDefBlockStructure(
970
- this.workspace.getBlocksByType('procedures_defreturn')[0],
971
- true,
972
- );
973
- assertCallBlockStructure(callBlock, [], [], 'do something');
974
- });
975
-
976
- test('callers without mutations create unnamed defs', function () {
977
- const callBlock = Blockly.Xml.domToBlock(
978
- Blockly.utils.xml.textToDom(
979
- '<block type="procedures_callreturn"></block>',
980
- ),
981
- this.workspace,
982
- );
983
- this.clock.runAll();
984
- assertDefBlockStructure(
985
- this.workspace.getBlocksByType('procedures_defreturn')[0],
986
- true,
987
- );
988
- assertCallBlockStructure(callBlock, [], [], 'unnamed');
989
- });
990
-
991
- test('callers with missing args create new defs', function () {
992
- const defBlock = Blockly.Xml.domToBlock(
993
- Blockly.utils.xml.textToDom(`
994
- <block type="procedures_defreturn">
995
- <field name="NAME">do something</field>
996
- <mutation>
997
- <arg name="x" varid="arg"></arg>
998
- </mutation>
999
- </block>
1000
- `),
1001
- this.workspace,
1002
- );
1003
- const callBlock = Blockly.Xml.domToBlock(
1004
- Blockly.utils.xml.textToDom(
1005
- '<block type="procedures_callreturn">' +
1006
- ' <mutation name="do something"/>' +
1007
- '</block>',
1008
- ),
1009
- this.workspace,
1010
- );
1011
- this.clock.runAll();
1012
- assertDefBlockStructure(defBlock, true, ['x'], ['arg']);
1013
- assertCallBlockStructure(callBlock, [], [], 'do something2');
1014
- });
1015
-
1016
- test('callers with mismatched args create new defs', function () {
1017
- const defBlock = Blockly.Xml.domToBlock(
1018
- Blockly.utils.xml.textToDom(`
1019
- <block type="procedures_defreturn">
1020
- <field name="NAME">do something</field>
1021
- <mutation>
1022
- <arg name="x" varid="arg"></arg>
1023
- </mutation>
1024
- </block>
1025
- `),
1026
- this.workspace,
1027
- );
1028
- const callBlock = Blockly.Xml.domToBlock(
1029
- Blockly.utils.xml.textToDom(`
1030
- <block type="procedures_callreturn">
1031
- <mutation name="do something">
1032
- <arg name="y"></arg>
1033
- </mutation>
1034
- </block>
1035
- `),
1036
- this.workspace,
1037
- );
1038
- this.clock.runAll();
1039
- assertDefBlockStructure(defBlock, true, ['x'], ['arg']);
1040
- assertCallBlockStructure(
1041
- callBlock,
1042
- ['y'],
1043
- [this.TEST_VAR_ID],
1044
- 'do something2',
1045
- );
1046
- });
1047
-
1048
- test.skip('callers whose defs are deserialized later do not create defs', function () {
1049
- Blockly.Xml.domToWorkspace(
1050
- Blockly.utils.xml.textToDom(`
1051
- <xml>
1052
- <block type="procedures_callreturn">
1053
- <mutation name="do something">
1054
- <arg name="x"></arg>
1055
- </mutation>
1056
- </block>
1057
- <block type="procedures_defreturn">
1058
- <field name="NAME">do something</field>
1059
- <mutation>
1060
- <arg name="x" varid="arg"></arg>
1061
- </mutation>
1062
- </block>
1063
- </xml>
1064
- `),
1065
- this.workspace,
1066
- );
1067
- this.clock.runAll();
1068
- const defBlock = this.workspace.getBlocksByType(
1069
- 'procedures_defreturn',
1070
- )[0];
1071
- const callBlock = this.workspace.getBlocksByType(
1072
- 'procedures_callreturn',
1073
- )[0];
1074
- // TODO: Currently the callers are creating variables with different
1075
- // IDs than those serialized to XML, so these assertions fail.
1076
- assertDefBlockStructure(defBlock, true, ['x'], ['arg']);
1077
- assertCallBlockStructure(callBlock, ['x'], ['arg'], 'do something');
1078
- });
1079
- });
1080
-
1081
- suite('json', function () {
1082
- test('callers without defs create new defs', function () {
1083
- const callBlock = Blockly.serialization.blocks.append(
1084
- {
1085
- 'type': 'procedures_callreturn',
1086
- 'extraState': {
1087
- 'name': 'do something',
1088
- },
1089
- },
1090
- this.workspace,
1091
- {recordUndo: true},
1092
- );
1093
- this.clock.runAll();
1094
- assertDefBlockStructure(
1095
- this.workspace.getBlocksByType('procedures_defreturn')[0],
1096
- true,
1097
- );
1098
- assertCallBlockStructure(callBlock, [], [], 'do something');
1099
- });
1100
-
1101
- test('callers without extra state create unamed defs', function () {
1102
- // recordUndo must be true to trigger change listener.
1103
- const callBlock = Blockly.serialization.blocks.append(
1104
- {
1105
- 'type': 'procedures_callreturn',
1106
- },
1107
- this.workspace,
1108
- {recordUndo: true},
1109
- );
1110
- this.clock.runAll();
1111
- assertDefBlockStructure(
1112
- this.workspace.getBlocksByType('procedures_defreturn')[0],
1113
- true,
1114
- );
1115
- assertCallBlockStructure(callBlock, [], [], 'unnamed');
1116
- });
1117
-
1118
- test('callers with missing args create new defs', function () {
1119
- const defBlock = Blockly.serialization.blocks.append(
1120
- {
1121
- 'type': 'procedures_defreturn',
1122
- 'fields': {
1123
- 'NAME': 'do something',
1124
- },
1125
- 'extraState': {
1126
- 'params': [
1127
- {
1128
- 'name': 'x',
1129
- 'id': 'arg',
1130
- },
1131
- ],
1132
- },
1133
- },
1134
- this.workspace,
1135
- );
1136
- const callBlock = Blockly.serialization.blocks.append(
1137
- {
1138
- 'type': 'procedures_callreturn',
1139
- 'extraState': {
1140
- 'name': 'do something',
1141
- },
1142
- },
1143
- this.workspace,
1144
- {recordUndo: true},
1145
- );
1146
- this.clock.runAll();
1147
- assertDefBlockStructure(defBlock, true, ['x'], ['arg']);
1148
- assertCallBlockStructure(callBlock, [], [], 'do something2');
1149
- });
1150
-
1151
- test('callers with mismatched args create new defs', function () {
1152
- const defBlock = Blockly.serialization.blocks.append(
1153
- {
1154
- 'type': 'procedures_defreturn',
1155
- 'fields': {
1156
- 'NAME': 'do something',
1157
- },
1158
- 'extraState': {
1159
- 'params': [
1160
- {
1161
- 'name': 'x',
1162
- 'id': 'arg',
1163
- },
1164
- ],
1165
- },
1166
- },
1167
- this.workspace,
1168
- );
1169
- const callBlock = Blockly.serialization.blocks.append(
1170
- {
1171
- 'type': 'procedures_callreturn',
1172
- 'extraState': {
1173
- 'name': 'do something',
1174
- 'params': ['y'],
1175
- },
1176
- },
1177
- this.workspace,
1178
- {recordUndo: true},
1179
- );
1180
- this.clock.runAll();
1181
- assertDefBlockStructure(defBlock, true, ['x'], ['arg']);
1182
- assertCallBlockStructure(
1183
- callBlock,
1184
- ['y'],
1185
- [this.TEST_VAR_ID],
1186
- 'do something2',
1187
- );
1188
- });
1189
-
1190
- test.skip('callers whose defs are deserialized later do not create defs', function () {
1191
- Blockly.serialization.workspaces.load(
1192
- {
1193
- 'blocks': {
1194
- 'languageVersion': 0,
1195
- 'blocks': [
1196
- {
1197
- 'type': 'procedures_callreturn',
1198
- 'extraState': {
1199
- 'params': ['x'],
1200
- },
1201
- },
1202
- {
1203
- 'type': 'procedures_defreturn',
1204
- 'fields': {
1205
- 'NAME': 'do something',
1206
- },
1207
- 'extraState': {
1208
- 'params': [
1209
- {
1210
- 'name': 'x',
1211
- 'id': 'arg',
1212
- },
1213
- ],
1214
- },
1215
- },
1216
- ],
1217
- },
1218
- },
1219
- this.workspace,
1220
- );
1221
- this.clock.runAll();
1222
- const defBlock = this.workspace.getBlocksByType(
1223
- 'procedures_defreturn',
1224
- )[0];
1225
- const callBlock = this.workspace.getBlocksByType(
1226
- 'procedures_callreturn',
1227
- )[0];
1228
- // TODO: Currently the callers are creating variables with different
1229
- // IDs than those serialized to JSON, so these assertions fail.
1230
- assertDefBlockStructure(defBlock, true, ['x'], ['arg']);
1231
- assertCallBlockStructure(callBlock, ['x'], ['arg'], 'do something');
1232
- });
1233
- });
1234
- });
1235
-
1236
- suite('definition block context menu', function () {
1237
- test('the context menu includes an option for creating the caller', function () {
1238
- const def = Blockly.serialization.blocks.append(
1239
- {
1240
- 'type': 'procedures_defnoreturn',
1241
- 'fields': {
1242
- 'NAME': 'test name',
1243
- },
1244
- },
1245
- this.workspace,
1246
- );
1247
-
1248
- const options = [];
1249
- def.customContextMenu(options);
1250
-
1251
- assert.isTrue(
1252
- options[0].text.includes('test name'),
1253
- 'Expected the context menu to have an option to create the caller',
1254
- );
1255
- });
1256
-
1257
- test('the context menu includes an option for each parameter', function () {
1258
- const def = Blockly.serialization.blocks.append(
1259
- {
1260
- 'type': 'procedures_defnoreturn',
1261
- 'fields': {
1262
- 'NAME': 'test name',
1263
- },
1264
- 'extraState': {
1265
- 'params': [
1266
- {
1267
- 'name': 'testParam1',
1268
- 'id': 'varId1',
1269
- 'paramId': 'paramId1',
1270
- },
1271
- {
1272
- 'name': 'testParam2',
1273
- 'id': 'varId2',
1274
- 'paramId': 'paramId2',
1275
- },
1276
- ],
1277
- },
1278
- },
1279
- this.workspace,
1280
- );
1281
-
1282
- const options = [];
1283
- def.customContextMenu(options);
1284
-
1285
- assert.isTrue(
1286
- options[1].text.includes('testParam1'),
1287
- 'Expected the context menu to have an option to create the first param',
1288
- );
1289
- assert.isTrue(
1290
- options[2].text.includes('testParam2'),
1291
- 'Expected the context menu to have an option to create the second param',
1292
- );
1293
- });
1294
- });
1295
-
1296
- suite('allProcedures', function () {
1297
- test('Only Procedures', function () {
1298
- const noReturnBlock = this.workspace.newBlock('procedures_defnoreturn');
1299
- noReturnBlock.setFieldValue('no return', 'NAME');
1300
- const returnBlock = this.workspace.newBlock('procedures_defreturn');
1301
- returnBlock.setFieldValue('return', 'NAME');
1302
-
1303
- const allProcedures = Blockly.Procedures.allProcedures(this.workspace);
1304
- assert.lengthOf(allProcedures, 2);
1305
-
1306
- assert.lengthOf(allProcedures[0], 1);
1307
- assert.equal(allProcedures[0][0][0], 'no return');
1308
-
1309
- assert.lengthOf(allProcedures[1], 1);
1310
- assert.equal(allProcedures[1][0][0], 'return');
1311
- });
1312
-
1313
- test('Multiple Blocks', function () {
1314
- const noReturnBlock = this.workspace.newBlock('procedures_defnoreturn');
1315
- noReturnBlock.setFieldValue('no return', 'NAME');
1316
- const returnBlock = this.workspace.newBlock('procedures_defreturn');
1317
- returnBlock.setFieldValue('return', 'NAME');
1318
- const returnBlock2 = this.workspace.newBlock('procedures_defreturn');
1319
- returnBlock2.setFieldValue('return2', 'NAME');
1320
- const _ = this.workspace.newBlock('controls_if');
1321
-
1322
- const allProcedures = Blockly.Procedures.allProcedures(this.workspace);
1323
- assert.lengthOf(allProcedures, 2);
1324
-
1325
- assert.lengthOf(allProcedures[0], 1);
1326
- assert.equal(allProcedures[0][0][0], 'no return');
1327
-
1328
- assert.lengthOf(allProcedures[1], 2);
1329
- assert.equal(allProcedures[1][0][0], 'return');
1330
- assert.equal(allProcedures[1][1][0], 'return2');
1331
- });
1332
-
1333
- test('No Procedures', function () {
1334
- const _ = this.workspace.newBlock('controls_if');
1335
- const allProcedures = Blockly.Procedures.allProcedures(this.workspace);
1336
- assert.lengthOf(allProcedures, 2);
1337
- assert.lengthOf(
1338
- allProcedures[0],
1339
- 0,
1340
- 'No procedures_defnoreturn blocks expected',
1341
- );
1342
- assert.lengthOf(
1343
- allProcedures[1],
1344
- 0,
1345
- 'No procedures_defreturn blocks expected',
1346
- );
1347
- });
1348
- });
1349
-
1350
- suite('isNameUsed', function () {
1351
- test('returns false if no blocks or models exists', function () {
1352
- assert.isFalse(
1353
- Blockly.Procedures.isNameUsed('proc name', this.workspace),
1354
- );
1355
- });
1356
-
1357
- test('returns true if an associated block exists', function () {
1358
- createProcDefBlock(this.workspace, false, [], 'proc name');
1359
- assert.isTrue(Blockly.Procedures.isNameUsed('proc name', this.workspace));
1360
- });
1361
-
1362
- test('return false if an associated block does not exist', function () {
1363
- createProcDefBlock(this.workspace, false, [], 'proc name');
1364
- assert.isFalse(
1365
- Blockly.Procedures.isNameUsed('other proc name', this.workspace),
1366
- );
1367
- });
1368
-
1369
- test('returns true if an associated procedure model exists', function () {
1370
- this.workspace
1371
- .getProcedureMap()
1372
- .add(new MockProcedureModel().setName('proc name'));
1373
- assert.isTrue(Blockly.Procedures.isNameUsed('proc name', this.workspace));
1374
- });
1375
-
1376
- test('returns false if an associated procedure model exists', function () {
1377
- this.workspace
1378
- .getProcedureMap()
1379
- .add(new MockProcedureModel().setName('proc name'));
1380
- assert.isFalse(
1381
- Blockly.Procedures.isNameUsed('other proc name', this.workspace),
1382
- );
1383
- });
1384
- });
1385
-
1386
- suite('Multiple block serialization', function () {
1387
- function assertDefAndCallBlocks(
1388
- workspace,
1389
- noReturnNames,
1390
- returnNames,
1391
- hasCallers,
1392
- ) {
1393
- const allProcedures = Blockly.Procedures.allProcedures(workspace);
1394
- const defNoReturnBlocks = allProcedures[0];
1395
- assert.lengthOf(
1396
- defNoReturnBlocks,
1397
- noReturnNames.length,
1398
- `Expected the number of no return blocks to be ${noReturnNames.length}`,
1399
- );
1400
- for (let i = 0; i < noReturnNames.length; i++) {
1401
- const expectedName = noReturnNames[i];
1402
- assert.equal(defNoReturnBlocks[i][0], expectedName);
1403
- if (hasCallers) {
1404
- const callers = Blockly.Procedures.getCallers(
1405
- expectedName,
1406
- workspace,
1407
- );
1408
- assert.lengthOf(
1409
- callers,
1410
- 1,
1411
- `Expected there to be one caller of the ${expectedName} block`,
1412
- );
1413
- }
1414
- }
1415
- const defReturnBlocks = allProcedures[1];
1416
- assert.lengthOf(
1417
- defReturnBlocks,
1418
- returnNames.length,
1419
- `Expected the number of return blocks to be ${returnNames.length}`,
1420
- );
1421
- for (let i = 0; i < returnNames.length; i++) {
1422
- const expectedName = returnNames[i];
1423
- assert.equal(defReturnBlocks[i][0], expectedName);
1424
- if (hasCallers) {
1425
- const callers = Blockly.Procedures.getCallers(
1426
- expectedName,
1427
- workspace,
1428
- );
1429
- assert.lengthOf(
1430
- callers,
1431
- 1,
1432
- `Expected there to be one caller of the ${expectedName} block`,
1433
- );
1434
- }
1435
- }
1436
-
1437
- // Expecting def and caller blocks are the only blocks on workspace
1438
- let expectedCount = noReturnNames.length + returnNames.length;
1439
- if (hasCallers) {
1440
- expectedCount *= 2;
1441
- }
1442
- const blocks = workspace.getAllBlocks(false);
1443
- assert.lengthOf(blocks, expectedCount);
1444
- }
1445
-
1446
- suite('no name renamed to unnamed', function () {
1447
- test('defnoreturn and defreturn', function () {
1448
- const xml = Blockly.utils.xml.textToDom(`
1449
- <xml xmlns="https://developers.google.com/blockly/xml">
1450
- <block type="procedures_defnoreturn"/>
1451
- <block type="procedures_defreturn"/>
1452
- </xml>`);
1453
- Blockly.Xml.domToWorkspace(xml, this.workspace);
1454
- this.clock.runAll();
1455
-
1456
- assertDefAndCallBlocks(
1457
- this.workspace,
1458
- ['unnamed'],
1459
- ['unnamed2'],
1460
- false,
1461
- );
1462
- });
1463
-
1464
- test('defreturn and defnoreturn', function () {
1465
- const xml = Blockly.utils.xml.textToDom(`
1466
- <xml xmlns="https://developers.google.com/blockly/xml">
1467
- <block type="procedures_defreturn"/>
1468
- <block type="procedures_defnoreturn"/>
1469
- </xml>`);
1470
- Blockly.Xml.domToWorkspace(xml, this.workspace);
1471
- this.clock.runAll();
1472
-
1473
- assertDefAndCallBlocks(
1474
- this.workspace,
1475
- ['unnamed2'],
1476
- ['unnamed'],
1477
- false,
1478
- );
1479
- });
1480
-
1481
- test('callreturn (no def in xml)', function () {
1482
- const xml = Blockly.utils.xml.textToDom(`
1483
- <xml xmlns="https://developers.google.com/blockly/xml">
1484
- <block type="procedures_callreturn"/>
1485
- </xml>`);
1486
- Blockly.Xml.domToWorkspace(xml, this.workspace);
1487
- this.clock.runAll();
1488
- assertDefAndCallBlocks(this.workspace, [], ['unnamed'], true);
1489
- });
1490
-
1491
- test('callnoreturn and callreturn (no def in xml)', function () {
1492
- const xml = Blockly.utils.xml.textToDom(`
1493
- <xml xmlns="https://developers.google.com/blockly/xml">
1494
- <block type="procedures_callnoreturn" id="first"/>
1495
- <block type="procedures_callreturn" id="second"/>
1496
- </xml>`);
1497
- Blockly.Xml.domToWorkspace(xml, this.workspace);
1498
- this.clock.runAll();
1499
- assertDefAndCallBlocks(this.workspace, ['unnamed'], ['unnamed2'], true);
1500
- });
1501
-
1502
- test('callreturn and callnoreturn (no def in xml)', function () {
1503
- const xml = Blockly.utils.xml.textToDom(`
1504
- <xml xmlns="https://developers.google.com/blockly/xml">
1505
- <block type="procedures_callreturn"/>
1506
- <block type="procedures_callnoreturn"/>
1507
- </xml>`);
1508
- Blockly.Xml.domToWorkspace(xml, this.workspace);
1509
- this.clock.runAll();
1510
- assertDefAndCallBlocks(this.workspace, ['unnamed2'], ['unnamed'], true);
1511
- });
1512
- });
1513
- });
1514
-
1515
- suite('getDefinition - Modified cases', function () {
1516
- setup(function () {
1517
- Blockly.Blocks['new_proc'] = {
1518
- init: function () {},
1519
- getProcedureDef: function () {
1520
- return [this.name, [], false];
1521
- },
1522
- name: 'test',
1523
- };
1524
-
1525
- Blockly.Blocks['nested_proc'] = {
1526
- init: function () {
1527
- this.setPreviousStatement(true, null);
1528
- this.setNextStatement(true, null);
1529
- },
1530
- getProcedureDef: function () {
1531
- return [this.name, [], false];
1532
- },
1533
- name: 'test',
1534
- };
1535
- });
1536
-
1537
- teardown(function () {
1538
- delete Blockly.Blocks['new_proc'];
1539
- delete Blockly.Blocks['nested_proc'];
1540
- });
1541
-
1542
- test('Custom procedure block', function () {
1543
- // Do not require procedures to be the built-in procedures.
1544
- const defBlock = this.workspace.newBlock('new_proc');
1545
- const def = Blockly.Procedures.getDefinition('test', this.workspace);
1546
- assert.equal(def, defBlock);
1547
- });
1548
-
1549
- test('Stacked procedures', function () {
1550
- const blockA = this.workspace.newBlock('nested_proc');
1551
- const blockB = this.workspace.newBlock('nested_proc');
1552
- blockA.name = 'a';
1553
- blockB.name = 'b';
1554
- blockA.nextConnection.connect(blockB.previousConnection);
1555
- const def = Blockly.Procedures.getDefinition('b', this.workspace);
1556
- assert.equal(def, blockB);
1557
- });
1558
- });
1559
-
1560
- const testSuites = [
1561
- {
1562
- title: 'procedures_defreturn',
1563
- hasReturn: true,
1564
- defType: 'procedures_defreturn',
1565
- callType: 'procedures_callreturn',
1566
- },
1567
- {
1568
- title: 'procedures_defnoreturn',
1569
- hasReturn: false,
1570
- defType: 'procedures_defnoreturn',
1571
- callType: 'procedures_callnoreturn',
1572
- },
1573
- ];
1574
-
1575
- testSuites.forEach((testSuite) => {
1576
- suite(testSuite.title, function () {
1577
- suite('Structure', function () {
1578
- setup(function () {
1579
- this.defBlock = this.workspace.newBlock(testSuite.defType);
1580
- this.defBlock.setFieldValue('proc name', 'NAME');
1581
- });
1582
- test('Definition block', function () {
1583
- assertDefBlockStructure(this.defBlock, testSuite.hasReturn);
1584
- });
1585
-
1586
- test('Call block', function () {
1587
- this.callBlock = Blockly.serialization.blocks.append(
1588
- {
1589
- 'type': testSuite.callType,
1590
- },
1591
- this.workspace,
1592
- {recordUndo: true},
1593
- );
1594
- this.callBlock.setFieldValue('proc name', 'NAME');
1595
- this.clock.runAll();
1596
- assertCallBlockStructure(this.callBlock);
1597
- });
1598
- });
1599
- suite('rename', function () {
1600
- setup(function () {
1601
- this.defBlock = Blockly.serialization.blocks.append(
1602
- {
1603
- 'type': testSuite.defType,
1604
- 'fields': {
1605
- 'NAME': 'proc name',
1606
- },
1607
- },
1608
- this.workspace,
1609
- );
1610
- this.callBlock = Blockly.serialization.blocks.append(
1611
- {
1612
- 'type': testSuite.callType,
1613
- 'fields': {
1614
- 'NAME': 'proc name',
1615
- },
1616
- },
1617
- this.workspace,
1618
- );
1619
- sinon.stub(this.defBlock.getField('NAME'), 'resizeEditor_');
1620
- });
1621
- test('Simple, Programmatic', function () {
1622
- this.defBlock.setFieldValue(
1623
- this.defBlock.getFieldValue('NAME') + '2',
1624
- 'NAME',
1625
- );
1626
- assert.equal(this.defBlock.getFieldValue('NAME'), 'proc name2');
1627
- assert.equal(this.callBlock.getFieldValue('NAME'), 'proc name2');
1628
- });
1629
- test('Simple, Input', function () {
1630
- const defInput = this.defBlock.getField('NAME');
1631
- defInput.htmlInput_ = document.createElement('input');
1632
- defInput.htmlInput_.setAttribute(
1633
- 'data-untyped-default-value',
1634
- 'proc name',
1635
- );
1636
-
1637
- defInput.htmlInput_.value = 'proc name2';
1638
- defInput.onHtmlInputChange(null);
1639
- assert.equal(this.defBlock.getFieldValue('NAME'), 'proc name2');
1640
- assert.equal(this.callBlock.getFieldValue('NAME'), 'proc name2');
1641
- });
1642
- test('lower -> CAPS', function () {
1643
- const defInput = this.defBlock.getField('NAME');
1644
- defInput.htmlInput_ = document.createElement('input');
1645
- defInput.htmlInput_.setAttribute(
1646
- 'data-untyped-default-value',
1647
- 'proc name',
1648
- );
1649
-
1650
- defInput.htmlInput_.value = 'PROC NAME';
1651
- defInput.onHtmlInputChange(null);
1652
- assert.equal(this.defBlock.getFieldValue('NAME'), 'PROC NAME');
1653
- assert.equal(this.callBlock.getFieldValue('NAME'), 'PROC NAME');
1654
- });
1655
- test('CAPS -> lower', function () {
1656
- this.defBlock.setFieldValue('PROC NAME', 'NAME');
1657
- this.callBlock.setFieldValue('PROC NAME', 'NAME');
1658
- const defInput = this.defBlock.getField('NAME');
1659
- defInput.htmlInput_ = document.createElement('input');
1660
- defInput.htmlInput_.setAttribute(
1661
- 'data-untyped-default-value',
1662
- 'PROC NAME',
1663
- );
1664
-
1665
- defInput.htmlInput_.value = 'proc name';
1666
- defInput.onHtmlInputChange(null);
1667
- assert.equal(this.defBlock.getFieldValue('NAME'), 'proc name');
1668
- assert.equal(this.callBlock.getFieldValue('NAME'), 'proc name');
1669
- });
1670
- test('Whitespace', function () {
1671
- const defInput = this.defBlock.getField('NAME');
1672
- defInput.htmlInput_ = document.createElement('input');
1673
- defInput.htmlInput_.setAttribute(
1674
- 'data-untyped-default-value',
1675
- 'proc name',
1676
- );
1677
-
1678
- defInput.htmlInput_.value = 'proc name ';
1679
- defInput.onHtmlInputChange(null);
1680
- assert.equal(this.defBlock.getFieldValue('NAME'), 'proc name');
1681
- assert.equal(this.callBlock.getFieldValue('NAME'), 'proc name');
1682
- });
1683
- test('Whitespace then Text', function () {
1684
- const defInput = this.defBlock.getField('NAME');
1685
- defInput.htmlInput_ = document.createElement('input');
1686
- defInput.htmlInput_.setAttribute(
1687
- 'data-untyped-default-value',
1688
- 'proc name',
1689
- );
1690
-
1691
- defInput.htmlInput_.value = 'proc name ';
1692
- defInput.onHtmlInputChange(null);
1693
- defInput.htmlInput_.value = 'proc name 2';
1694
- defInput.onHtmlInputChange(null);
1695
- assert.equal(this.defBlock.getFieldValue('NAME'), 'proc name 2');
1696
- assert.equal(this.callBlock.getFieldValue('NAME'), 'proc name 2');
1697
- });
1698
- test('Set Empty', function () {
1699
- const defInput = this.defBlock.getField('NAME');
1700
- defInput.htmlInput_ = document.createElement('input');
1701
- defInput.htmlInput_.setAttribute(
1702
- 'data-untyped-default-value',
1703
- 'proc name',
1704
- );
1705
-
1706
- defInput.htmlInput_.value = '';
1707
- defInput.onHtmlInputChange(null);
1708
- assert.equal(
1709
- this.defBlock.getFieldValue('NAME'),
1710
- Blockly.Msg['UNNAMED_KEY'],
1711
- );
1712
- assert.equal(
1713
- this.callBlock.getFieldValue('NAME'),
1714
- Blockly.Msg['UNNAMED_KEY'],
1715
- );
1716
- });
1717
- test('Set Empty, and Create New', function () {
1718
- const defInput = this.defBlock.getField('NAME');
1719
- defInput.htmlInput_ = document.createElement('input');
1720
- defInput.htmlInput_.setAttribute(
1721
- 'data-untyped-default-value',
1722
- 'proc name',
1723
- );
1724
-
1725
- defInput.htmlInput_.value = '';
1726
- defInput.onHtmlInputChange(null);
1727
- const newDefBlock = this.workspace.newBlock(testSuite.defType);
1728
- newDefBlock.setFieldValue('new name', 'NAME');
1729
- assert.equal(
1730
- this.defBlock.getFieldValue('NAME'),
1731
- Blockly.Msg['UNNAMED_KEY'],
1732
- );
1733
- assert.equal(
1734
- this.callBlock.getFieldValue('NAME'),
1735
- Blockly.Msg['UNNAMED_KEY'],
1736
- );
1737
- });
1738
- });
1739
- suite('getCallers', function () {
1740
- setup(function () {
1741
- this.defBlock = Blockly.serialization.blocks.append(
1742
- {
1743
- 'type': testSuite.defType,
1744
- 'fields': {
1745
- 'NAME': 'proc name',
1746
- },
1747
- },
1748
- this.workspace,
1749
- );
1750
- this.callBlock = Blockly.serialization.blocks.append(
1751
- {
1752
- 'type': testSuite.callType,
1753
- 'fields': {
1754
- 'NAME': 'proc name',
1755
- },
1756
- },
1757
- this.workspace,
1758
- );
1759
- });
1760
- test('Simple', function () {
1761
- const callers = Blockly.Procedures.getCallers(
1762
- 'proc name',
1763
- this.workspace,
1764
- );
1765
- assert.equal(callers.length, 1);
1766
- assert.equal(callers[0], this.callBlock);
1767
- });
1768
- test('Multiple Callers', function () {
1769
- const caller2 = this.workspace.newBlock(testSuite.callType);
1770
- caller2.setFieldValue('proc name', 'NAME');
1771
- const caller3 = this.workspace.newBlock(testSuite.callType);
1772
- caller3.setFieldValue('proc name', 'NAME');
1773
-
1774
- const callers = Blockly.Procedures.getCallers(
1775
- 'proc name',
1776
- this.workspace,
1777
- );
1778
- assert.equal(callers.length, 3);
1779
- assert.equal(callers[0], this.callBlock);
1780
- assert.equal(callers[1], caller2);
1781
- assert.equal(callers[2], caller3);
1782
- });
1783
- test('Multiple Procedures', function () {
1784
- const def2 = this.workspace.newBlock(testSuite.defType);
1785
- def2.setFieldValue('proc name2', 'NAME');
1786
- const caller2 = this.workspace.newBlock(testSuite.callType);
1787
- caller2.setFieldValue('proc name2', 'NAME');
1788
-
1789
- const callers = Blockly.Procedures.getCallers(
1790
- 'proc name',
1791
- this.workspace,
1792
- );
1793
- assert.equal(callers.length, 1);
1794
- assert.equal(callers[0], this.callBlock);
1795
- });
1796
- // This can occur if you:
1797
- // 1) Create an uppercase definition and call block.
1798
- // 2) Delete both blocks.
1799
- // 3) Create a lowercase definition and call block.
1800
- // 4) Retrieve the uppercase call block from the trashcan.
1801
- // (And vise versa for creating lowercase blocks first)
1802
- // When converted to code all function names will be lowercase, so a
1803
- // caller should still be returned for a differently-cased procedure.
1804
- test('Call Different Case', function () {
1805
- this.callBlock.setFieldValue('PROC NAME', 'NAME');
1806
- const callers = Blockly.Procedures.getCallers(
1807
- 'proc name',
1808
- this.workspace,
1809
- );
1810
- assert.equal(callers.length, 1);
1811
- assert.equal(callers[0], this.callBlock);
1812
- });
1813
- test('Multiple Workspaces', function () {
1814
- const workspace = new Blockly.Workspace();
1815
- try {
1816
- const def2 = workspace.newBlock(testSuite.defType);
1817
- def2.setFieldValue('proc name', 'NAME');
1818
- const caller2 = workspace.newBlock(testSuite.callType);
1819
- caller2.setFieldValue('proc name', 'NAME');
1820
-
1821
- let callers = Blockly.Procedures.getCallers(
1822
- 'proc name',
1823
- this.workspace,
1824
- );
1825
- assert.equal(callers.length, 1);
1826
- assert.equal(callers[0], this.callBlock);
1827
-
1828
- callers = Blockly.Procedures.getCallers('proc name', workspace);
1829
- assert.equal(callers.length, 1);
1830
- assert.equal(callers[0], caller2);
1831
- } finally {
1832
- workspaceTeardown.call(this, workspace);
1833
- }
1834
- });
1835
- });
1836
- suite('getDefinition', function () {
1837
- setup(function () {
1838
- this.defBlock = Blockly.serialization.blocks.append(
1839
- {
1840
- 'type': testSuite.defType,
1841
- 'fields': {
1842
- 'NAME': 'proc name',
1843
- },
1844
- },
1845
- this.workspace,
1846
- );
1847
- this.callBlock = Blockly.serialization.blocks.append(
1848
- {
1849
- 'type': testSuite.callType,
1850
- 'fields': {
1851
- 'NAME': 'proc name',
1852
- },
1853
- },
1854
- this.workspace,
1855
- );
1856
- });
1857
- test('Simple', function () {
1858
- const def = Blockly.Procedures.getDefinition(
1859
- 'proc name',
1860
- this.workspace,
1861
- );
1862
- assert.equal(def, this.defBlock);
1863
- });
1864
- test('Multiple Procedures', function () {
1865
- const def2 = this.workspace.newBlock(testSuite.defType);
1866
- def2.setFieldValue('proc name2', 'NAME');
1867
- const caller2 = this.workspace.newBlock(testSuite.callType);
1868
- caller2.setFieldValue('proc name2', 'NAME');
1869
-
1870
- const def = Blockly.Procedures.getDefinition(
1871
- 'proc name',
1872
- this.workspace,
1873
- );
1874
- assert.equal(def, this.defBlock);
1875
- });
1876
- test('Multiple Workspaces', function () {
1877
- const workspace = new Blockly.Workspace();
1878
- try {
1879
- const def2 = workspace.newBlock(testSuite.defType);
1880
- def2.setFieldValue('proc name', 'NAME');
1881
- const caller2 = workspace.newBlock(testSuite.callType);
1882
- caller2.setFieldValue('proc name', 'NAME');
1883
-
1884
- let def = Blockly.Procedures.getDefinition(
1885
- 'proc name',
1886
- this.workspace,
1887
- );
1888
- assert.equal(def, this.defBlock);
1889
-
1890
- def = Blockly.Procedures.getDefinition('proc name', workspace);
1891
- assert.equal(def, def2);
1892
- } finally {
1893
- workspaceTeardown.call(this, workspace);
1894
- }
1895
- });
1896
- });
1897
-
1898
- suite('Mutation', function () {
1899
- setup(function () {
1900
- this.defBlock = Blockly.serialization.blocks.append(
1901
- {
1902
- 'type': testSuite.defType,
1903
- 'fields': {
1904
- 'NAME': 'proc name',
1905
- },
1906
- },
1907
- this.workspace,
1908
- );
1909
- this.callBlock = Blockly.serialization.blocks.append(
1910
- {
1911
- 'type': testSuite.callType,
1912
- 'extraState': {
1913
- 'name': 'proc name',
1914
- },
1915
- },
1916
- this.workspace,
1917
- );
1918
- });
1919
- suite('Composition', function () {
1920
- suite('Statements', function () {
1921
- function setStatementValue(mainWorkspace, defBlock, value) {
1922
- const mutatorWorkspace = new Blockly.Workspace(
1923
- new Blockly.Options({
1924
- parentWorkspace: mainWorkspace,
1925
- }),
1926
- );
1927
- defBlock.decompose(mutatorWorkspace);
1928
- const containerBlock = mutatorWorkspace.getTopBlocks()[0];
1929
- const statementField = containerBlock.getField('STATEMENTS');
1930
- statementField.setValue(value);
1931
- defBlock.compose(containerBlock);
1932
- }
1933
- if (testSuite.defType === 'procedures_defreturn') {
1934
- test('Has Statements', function () {
1935
- setStatementValue(this.workspace, this.defBlock, true);
1936
- assert.isTrue(this.defBlock.hasStatements_);
1937
- });
1938
- test('Has No Statements', function () {
1939
- setStatementValue(this.workspace, this.defBlock, false);
1940
- assert.isFalse(this.defBlock.hasStatements_);
1941
- });
1942
- test('Saving Statements', function () {
1943
- const blockXml = Blockly.utils.xml.textToDom(
1944
- '<block type="procedures_defreturn">' +
1945
- ' <statement name="STACK">' +
1946
- ' <block type="procedures_ifreturn" id="test"></block>' +
1947
- ' </statement> ' +
1948
- '</block>',
1949
- );
1950
- const defBlock = Blockly.Xml.domToBlock(
1951
- blockXml,
1952
- this.workspace,
1953
- );
1954
- setStatementValue(this.workspace, defBlock, false);
1955
- assert.isNull(defBlock.getInput('STACK'));
1956
- setStatementValue(this.workspace, defBlock, true);
1957
- assert.isNotNull(defBlock.getInput('STACK'));
1958
- const statementBlocks = defBlock.getChildren();
1959
- assert.equal(statementBlocks.length, 1);
1960
- const block = statementBlocks[0];
1961
- assert.equal(block.type, 'procedures_ifreturn');
1962
- assert.equal(block.id, 'test');
1963
- });
1964
- }
1965
- });
1966
- suite('Untyped Arguments', function () {
1967
- async function createMutator(argArray) {
1968
- const mutatorIcon = this.defBlock.getIcon(
1969
- Blockly.icons.MutatorIcon.TYPE,
1970
- );
1971
- await mutatorIcon.setBubbleVisible(true);
1972
- this.mutatorWorkspace = mutatorIcon.getWorkspace();
1973
- this.containerBlock = this.mutatorWorkspace.getTopBlocks()[0];
1974
- this.connection =
1975
- this.containerBlock.getInput('STACK').connection;
1976
- for (let i = 0; i < argArray.length; i++) {
1977
- this.argBlock = this.mutatorWorkspace.newBlock(
1978
- 'procedures_mutatorarg',
1979
- );
1980
- this.argBlock.setFieldValue(argArray[i], 'NAME');
1981
- this.connection.connect(this.argBlock.previousConnection);
1982
- this.connection = this.argBlock.nextConnection;
1983
- }
1984
- this.clock.runAll();
1985
- }
1986
- function assertArgs(argArray) {
1987
- assert.equal(
1988
- this.defBlock.getVars().length,
1989
- argArray.length,
1990
- 'Expected the def to have the right number of arguments',
1991
- );
1992
- for (let i = 0; i < argArray.length; i++) {
1993
- assert.equal(this.defBlock.getVars()[i], argArray[i]);
1994
- }
1995
- assert.equal(
1996
- this.callBlock.getVars().length,
1997
- argArray.length,
1998
- 'Expected the call to have the right number of arguments',
1999
- );
2000
- for (let i = 0; i < argArray.length; i++) {
2001
- assert.equal(this.callBlock.getVars()[i], argArray[i]);
2002
- }
2003
- }
2004
- test('Simple Add Arg', async function () {
2005
- const args = ['arg1'];
2006
- await createMutator.call(this, args);
2007
- assertArgs.call(this, args);
2008
- });
2009
- test('Multiple Args', async function () {
2010
- const args = ['arg1', 'arg2', 'arg3'];
2011
- await createMutator.call(this, args);
2012
- assertArgs.call(this, args);
2013
- });
2014
- test('Simple Change Arg', async function () {
2015
- await createMutator.call(this, ['arg1']);
2016
- this.argBlock.setFieldValue('arg2', 'NAME');
2017
- this.defBlock.compose(this.containerBlock);
2018
- assertArgs.call(this, ['arg2']);
2019
- });
2020
- test('lower -> CAPS', async function () {
2021
- await createMutator.call(this, ['arg']);
2022
- this.argBlock.setFieldValue('ARG', 'NAME');
2023
- this.defBlock.compose(this.containerBlock);
2024
- assertArgs.call(this, ['ARG']);
2025
- });
2026
- test('CAPS -> lower', async function () {
2027
- await createMutator.call(this, ['ARG']);
2028
- this.argBlock.setFieldValue('arg', 'NAME');
2029
- this.defBlock.compose(this.containerBlock);
2030
- assertArgs.call(this, ['arg']);
2031
- });
2032
- // Test case for #1958
2033
- test('Set Arg Empty', async function () {
2034
- const args = ['arg1'];
2035
- await createMutator.call(this, args);
2036
- this.argBlock.setFieldValue('', 'NAME');
2037
- this.defBlock.compose(this.containerBlock);
2038
- assertArgs.call(this, args);
2039
- });
2040
- test('Whitespace', async function () {
2041
- const args = ['arg1'];
2042
- await createMutator.call(this, args);
2043
- this.argBlock.setFieldValue(' ', 'NAME');
2044
- this.defBlock.compose(this.containerBlock);
2045
- assertArgs.call(this, args);
2046
- });
2047
- test('Whitespace and Text', async function () {
2048
- await createMutator.call(this, ['arg1']);
2049
- this.argBlock.setFieldValue(' text ', 'NAME');
2050
- this.defBlock.compose(this.containerBlock);
2051
- assertArgs.call(this, ['text']);
2052
- });
2053
- test('<>', async function () {
2054
- const args = ['<>'];
2055
- await createMutator.call(this, args);
2056
- assertArgs.call(this, args);
2057
- });
2058
- });
2059
- });
2060
- suite('Decomposition', function () {
2061
- suite('Statements', function () {
2062
- if (testSuite.defType === 'procedures_defreturn') {
2063
- test('Has Statement Input', function () {
2064
- const mutatorWorkspace = new Blockly.Workspace(
2065
- new Blockly.Options({
2066
- parentWorkspace: this.workspace,
2067
- }),
2068
- );
2069
- this.defBlock.decompose(mutatorWorkspace);
2070
- const statementInput = mutatorWorkspace
2071
- .getTopBlocks()[0]
2072
- .getInput('STATEMENT_INPUT');
2073
- assert.isNotNull(statementInput);
2074
- });
2075
- test('Has Statements', function () {
2076
- this.defBlock.hasStatements_ = true;
2077
- const mutatorWorkspace = new Blockly.Workspace(
2078
- new Blockly.Options({
2079
- parentWorkspace: this.workspace,
2080
- }),
2081
- );
2082
- this.defBlock.decompose(mutatorWorkspace);
2083
- const statementValue = mutatorWorkspace
2084
- .getTopBlocks()[0]
2085
- .getField('STATEMENTS')
2086
- .getValueBoolean();
2087
- assert.isTrue(statementValue);
2088
- });
2089
- test('No Has Statements', function () {
2090
- this.defBlock.hasStatements_ = false;
2091
- const mutatorWorkspace = new Blockly.Workspace(
2092
- new Blockly.Options({
2093
- parentWorkspace: this.workspace,
2094
- }),
2095
- );
2096
- this.defBlock.decompose(mutatorWorkspace);
2097
- const statementValue = mutatorWorkspace
2098
- .getTopBlocks()[0]
2099
- .getField('STATEMENTS')
2100
- .getValueBoolean();
2101
- assert.isFalse(statementValue);
2102
- });
2103
- } else {
2104
- test('Has no Statement Input', function () {
2105
- const mutatorWorkspace = new Blockly.Workspace(
2106
- new Blockly.Options({
2107
- parentWorkspace: this.workspace,
2108
- }),
2109
- );
2110
- this.defBlock.decompose(mutatorWorkspace);
2111
- const statementInput = mutatorWorkspace
2112
- .getTopBlocks()[0]
2113
- .getInput('STATEMENT_INPUT');
2114
- assert.isNull(statementInput);
2115
- });
2116
- }
2117
- });
2118
- });
2119
- });
2120
- /**
2121
- * Test cases for serialization tests.
2122
- * @type {Array<SerializationTestCase>}
2123
- */
2124
- const testCases = [
2125
- {
2126
- title: 'XML - Minimal definition',
2127
- xml: '<block type="' + testSuite.defType + '"/>',
2128
- expectedXml:
2129
- '<block xmlns="https://developers.google.com/blockly/xml" ' +
2130
- 'type="' +
2131
- testSuite.defType +
2132
- '" id="1">\n' +
2133
- ' <field name="NAME">unnamed</field>\n' +
2134
- '</block>',
2135
- assertBlockStructure: (block) => {
2136
- assertDefBlockStructure(block, testSuite.hasReturn);
2137
- },
2138
- },
2139
- {
2140
- title: 'XML - Common definition',
2141
- xml:
2142
- '<block type="' +
2143
- testSuite.defType +
2144
- '">' +
2145
- ' <field name="NAME">do something</field>' +
2146
- '</block>',
2147
- expectedXml:
2148
- '<block xmlns="https://developers.google.com/blockly/xml" ' +
2149
- 'type="' +
2150
- testSuite.defType +
2151
- '" id="1">\n' +
2152
- ' <field name="NAME">do something</field>\n' +
2153
- '</block>',
2154
- assertBlockStructure: (block) => {
2155
- assertDefBlockStructure(block, testSuite.hasReturn);
2156
- },
2157
- },
2158
- {
2159
- title: 'XML - With vars definition',
2160
- xml:
2161
- '<block type="' +
2162
- testSuite.defType +
2163
- '">\n' +
2164
- ' <mutation>\n' +
2165
- ' <arg name="x" varid="arg1"></arg>\n' +
2166
- ' <arg name="y" varid="arg2"></arg>\n' +
2167
- ' </mutation>\n' +
2168
- ' <field name="NAME">do something</field>\n' +
2169
- '</block>',
2170
- expectedXml:
2171
- '<block xmlns="https://developers.google.com/blockly/xml" ' +
2172
- 'type="' +
2173
- testSuite.defType +
2174
- '" id="1">\n' +
2175
- ' <mutation>\n' +
2176
- ' <arg name="x" varid="arg1"></arg>\n' +
2177
- ' <arg name="y" varid="arg2"></arg>\n' +
2178
- ' </mutation>\n' +
2179
- ' <field name="NAME">do something</field>\n' +
2180
- '</block>',
2181
- assertBlockStructure: (block) => {
2182
- assertDefBlockStructure(
2183
- block,
2184
- testSuite.hasReturn,
2185
- ['x', 'y'],
2186
- ['arg1', 'arg2'],
2187
- );
2188
- },
2189
- },
2190
- {
2191
- title: 'XML - With pre-created vars definition',
2192
- xml:
2193
- '<block type="' +
2194
- testSuite.defType +
2195
- '">\n' +
2196
- ' <mutation>\n' +
2197
- ' <arg name="preCreatedVar" varid="preCreatedVarId"></arg>\n' +
2198
- ' </mutation>\n' +
2199
- ' <field name="NAME">do something</field>\n' +
2200
- '</block>',
2201
- expectedXml:
2202
- '<block xmlns="https://developers.google.com/blockly/xml" ' +
2203
- 'type="' +
2204
- testSuite.defType +
2205
- '" id="1">\n' +
2206
- ' <mutation>\n' +
2207
- ' <arg name="preCreatedVar" varid="preCreatedVarId"></arg>\n' +
2208
- ' </mutation>\n' +
2209
- ' <field name="NAME">do something</field>\n' +
2210
- '</block>',
2211
- assertBlockStructure: (block) => {
2212
- assertDefBlockStructure(
2213
- block,
2214
- testSuite.hasReturn,
2215
- ['preCreatedVar'],
2216
- ['preCreatedVarId'],
2217
- );
2218
- },
2219
- },
2220
- {
2221
- title: 'XML - No statements definition',
2222
- xml:
2223
- '<block type="procedures_defreturn">\n' +
2224
- ' <mutation statements="false"></mutation>\n' +
2225
- ' <field name="NAME">do something</field>\n' +
2226
- '</block>',
2227
- expectedXml:
2228
- '<block xmlns="https://developers.google.com/blockly/xml" ' +
2229
- 'type="procedures_defreturn" id="1">\n' +
2230
- ' <mutation statements="false"></mutation>\n' +
2231
- ' <field name="NAME">do something</field>\n' +
2232
- '</block>',
2233
- assertBlockStructure: (block) => {
2234
- assertDefBlockStructure(block, true, [], [], false);
2235
- },
2236
- },
2237
- {
2238
- title: 'XML - Minimal caller',
2239
- xml: '<block type="' + testSuite.callType + '"/>',
2240
- expectedXml:
2241
- '<block xmlns="https://developers.google.com/blockly/xml" ' +
2242
- 'type="' +
2243
- testSuite.callType +
2244
- '" id="1">\n' +
2245
- ' <mutation name="unnamed"></mutation>\n' +
2246
- '</block>',
2247
- assertBlockStructure: (block) => {
2248
- assertCallBlockStructure(block);
2249
- },
2250
- },
2251
- {
2252
- title: 'XML - Common caller',
2253
- xml:
2254
- '<block type="' +
2255
- testSuite.callType +
2256
- '">\n' +
2257
- ' <mutation name="do something"/>\n' +
2258
- '</block>',
2259
- expectedXml:
2260
- '<block xmlns="https://developers.google.com/blockly/xml" ' +
2261
- 'type="' +
2262
- testSuite.callType +
2263
- '" id="1">\n' +
2264
- ' <mutation name="do something"></mutation>\n' +
2265
- '</block>',
2266
- assertBlockStructure: (block) => {
2267
- assertCallBlockStructure(block);
2268
- },
2269
- },
2270
- {
2271
- title: 'XML - With pre-created vars caller',
2272
- xml:
2273
- '<block type="' +
2274
- testSuite.callType +
2275
- '">\n' +
2276
- ' <mutation name="do something">\n' +
2277
- ' <arg name="preCreatedVar"></arg>\n' +
2278
- ' </mutation>\n' +
2279
- '</block>',
2280
- expectedXml:
2281
- '<block xmlns="https://developers.google.com/blockly/xml" ' +
2282
- 'type="' +
2283
- testSuite.callType +
2284
- '" id="1">\n' +
2285
- ' <mutation name="do something">\n' +
2286
- ' <arg name="preCreatedVar"></arg>\n' +
2287
- ' </mutation>\n' +
2288
- '</block>',
2289
- assertBlockStructure: (block) => {
2290
- assertCallBlockStructure(
2291
- block,
2292
- ['preCreatedVar'],
2293
- ['preCreatedVarId'],
2294
- );
2295
- },
2296
- },
2297
- {
2298
- title: 'JSON - Minimal definition',
2299
- json: {
2300
- 'type': testSuite.defType,
2301
- },
2302
- expectedJson: {
2303
- 'type': testSuite.defType,
2304
- 'id': '1',
2305
- 'fields': {
2306
- 'NAME': 'unnamed',
2307
- },
2308
- },
2309
- assertBlockStructure: (block) => {
2310
- assertDefBlockStructure(block, testSuite.hasReturn);
2311
- },
2312
- },
2313
- {
2314
- title: 'JSON - Common definition',
2315
- json: {
2316
- 'type': testSuite.defType,
2317
- 'fields': {
2318
- 'NAME': 'do something',
2319
- },
2320
- },
2321
- expectedJson: {
2322
- 'type': testSuite.defType,
2323
- 'id': '1',
2324
- 'fields': {
2325
- 'NAME': 'do something',
2326
- },
2327
- },
2328
- assertBlockStructure: (block) => {
2329
- assertDefBlockStructure(block, testSuite.hasReturn);
2330
- },
2331
- },
2332
- {
2333
- title: 'JSON - With vars definition',
2334
- json: {
2335
- 'type': testSuite.defType,
2336
- 'fields': {
2337
- 'NAME': 'do something',
2338
- },
2339
- 'extraState': {
2340
- 'params': [
2341
- {
2342
- 'name': 'x',
2343
- 'id': 'arg1',
2344
- },
2345
- {
2346
- 'name': 'y',
2347
- 'id': 'arg2',
2348
- },
2349
- ],
2350
- },
2351
- },
2352
- expectedJson: {
2353
- 'type': testSuite.defType,
2354
- 'id': '1',
2355
- 'fields': {
2356
- 'NAME': 'do something',
2357
- },
2358
- 'extraState': {
2359
- 'params': [
2360
- {
2361
- 'name': 'x',
2362
- 'id': 'arg1',
2363
- },
2364
- {
2365
- 'name': 'y',
2366
- 'id': 'arg2',
2367
- },
2368
- ],
2369
- },
2370
- },
2371
- assertBlockStructure: (block) => {
2372
- assertDefBlockStructure(
2373
- block,
2374
- testSuite.hasReturn,
2375
- ['x', 'y'],
2376
- ['arg1', 'arg2'],
2377
- );
2378
- },
2379
- },
2380
- {
2381
- title: 'JSON - With pre-created vars definition',
2382
- json: {
2383
- 'type': testSuite.defType,
2384
- 'extraState': {
2385
- 'params': [
2386
- {
2387
- 'name': 'preCreatedVar',
2388
- 'id': 'preCreatedVarId',
2389
- },
2390
- ],
2391
- },
2392
- 'fields': {
2393
- 'NAME': 'do something',
2394
- },
2395
- },
2396
- expectedJson: {
2397
- 'type': testSuite.defType,
2398
- 'id': '1',
2399
- 'fields': {
2400
- 'NAME': 'do something',
2401
- },
2402
- 'extraState': {
2403
- 'params': [
2404
- {
2405
- 'name': 'preCreatedVar',
2406
- 'id': 'preCreatedVarId',
2407
- },
2408
- ],
2409
- },
2410
- },
2411
- assertBlockStructure: (block) => {
2412
- assertDefBlockStructure(
2413
- block,
2414
- testSuite.hasReturn,
2415
- ['preCreatedVar'],
2416
- ['preCreatedVarId'],
2417
- );
2418
- },
2419
- },
2420
- {
2421
- title: 'JSON - No statements definition',
2422
- json: {
2423
- 'type': 'procedures_defreturn',
2424
- 'fields': {
2425
- 'NAME': 'do something',
2426
- },
2427
- 'extraState': {
2428
- 'hasStatements': false,
2429
- },
2430
- },
2431
- expectedJson: {
2432
- 'type': 'procedures_defreturn',
2433
- 'id': '1',
2434
- 'fields': {
2435
- 'NAME': 'do something',
2436
- },
2437
- 'extraState': {
2438
- 'hasStatements': false,
2439
- },
2440
- },
2441
- assertBlockStructure: (block) => {
2442
- assertDefBlockStructure(block, true, [], [], false);
2443
- },
2444
- },
2445
- {
2446
- title: 'JSON - Minimal caller',
2447
- json: {
2448
- 'type': testSuite.callType,
2449
- },
2450
- expectedJson: {
2451
- 'type': testSuite.callType,
2452
- 'id': '1',
2453
- 'extraState': {
2454
- 'name': 'unnamed',
2455
- },
2456
- },
2457
- assertBlockStructure: (block) => {
2458
- assertCallBlockStructure(block);
2459
- },
2460
- },
2461
- {
2462
- title: 'JSON - Common caller',
2463
- json: {
2464
- 'type': testSuite.callType,
2465
- 'extraState': {
2466
- 'name': 'do something',
2467
- },
2468
- },
2469
- expectedJson: {
2470
- 'type': testSuite.callType,
2471
- 'id': '1',
2472
- 'extraState': {
2473
- 'name': 'do something',
2474
- },
2475
- },
2476
- assertBlockStructure: (block) => {
2477
- assertCallBlockStructure(block);
2478
- },
2479
- },
2480
- {
2481
- title: 'JSON - With pre-created vars caller',
2482
- json: {
2483
- 'type': testSuite.callType,
2484
- 'extraState': {
2485
- 'name': 'do something',
2486
- 'params': ['preCreatedVar'],
2487
- },
2488
- },
2489
- expectedJson: {
2490
- 'type': testSuite.callType,
2491
- 'id': '1',
2492
- 'extraState': {
2493
- 'name': 'do something',
2494
- 'params': ['preCreatedVar'],
2495
- },
2496
- },
2497
- assertBlockStructure: (block) => {
2498
- assertCallBlockStructure(
2499
- block,
2500
- ['preCreatedVar'],
2501
- ['preCreatedVarId'],
2502
- );
2503
- },
2504
- },
2505
- ];
2506
- runSerializationTestSuite(testCases);
2507
- });
2508
- });
2509
- });