├── .clang-format ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ └── config.yml ├── PULL_REQUEST_TEMPLATE │ └── goog_module.md ├── dependabot.yml └── workflows │ ├── appengine_deploy.yml │ ├── build-release.yml │ └── build.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── SECURITY.md ├── THIRD-PARTY-NOTICES.txt ├── appengine ├── .gcloudignore ├── add_timestamps.py ├── expiration.py ├── main.py └── requirements.txt ├── blockly_compressed.js ├── blockly_compressed.js.map ├── blockly_uncompressed.js ├── blocks ├── colour.js ├── extensions.js ├── lists.js ├── logic.js ├── loops.js ├── math.js ├── procedures.js ├── pxt_blockly_functions.js ├── text.js ├── variables.js └── variables_dynamic.js ├── blocks_compressed.js ├── blocks_compressed.js.map ├── cleanup-scratch.sh ├── cleanup.sh ├── closure ├── bin │ └── calcdeps.py └── goog │ └── base.js ├── core ├── block.js ├── block_animations.js ├── block_drag_surface.js ├── block_dragger.js ├── block_svg.js ├── blockly.js ├── blocks.js ├── browser_events.js ├── bubble.js ├── bubble_dragger.js ├── colours.js ├── comment.js ├── component_manager.js ├── components │ └── menu │ │ └── menuseparator.js ├── connection.js ├── connection_checker.js ├── connection_db.js ├── connection_types.js ├── constants.js ├── contextmenu.js ├── contextmenu_items.js ├── contextmenu_registry.js ├── css.js ├── delete_area.js ├── drag_target.js ├── dropdowndiv.js ├── events │ ├── block_events.js │ ├── events.js │ ├── events_abstract.js │ ├── events_block_drag.js │ ├── events_bubble_open.js │ ├── events_click.js │ ├── events_marker_move.js │ ├── events_selected.js │ ├── events_theme_change.js │ ├── events_toolbox_item_select.js │ ├── events_trashcan_open.js │ ├── events_viewport.js │ ├── ui_events.js │ ├── variable_events.js │ ├── workspace_events.js │ └── ws_comment_events.js ├── extensions.js ├── field.js ├── field_angle.js ├── field_argumenteditor.js ├── field_checkbox.js ├── field_colour.js ├── field_colour_slider.js ├── field_dropdown.js ├── field_iconmenu.js ├── field_image.js ├── field_label.js ├── field_label_hover.js ├── field_label_serializable.js ├── field_multilineinput.js ├── field_number.js ├── field_numberdropdown.js ├── field_registry.js ├── field_slider.js ├── field_string.js ├── field_textdropdown.js ├── field_textinput.js ├── field_variable.js ├── field_variable_getter.js ├── field_vertical_separator.js ├── flyout_base.js ├── flyout_button.js ├── flyout_horizontal.js ├── flyout_vertical.js ├── generator.js ├── gesture.js ├── grid.js ├── icon.js ├── inject.js ├── input.js ├── input_types.js ├── insertion_marker_manager.js ├── interfaces │ ├── i_accessibility.js │ ├── i_autohideable.js │ ├── i_block_dragger.js │ ├── i_bounded_element.js │ ├── i_bubble.js │ ├── i_component.js │ ├── i_connection_checker.js │ ├── i_contextmenu.js │ ├── i_copyable.js │ ├── i_deletable.js │ ├── i_delete_area.js │ ├── i_drag_target.js │ ├── i_draggable.js │ ├── i_flyout.js │ ├── i_metrics_manager.js │ ├── i_movable.js │ ├── i_positionable.js │ ├── i_registrable.js │ ├── i_registrable_field.js │ ├── i_selectable.js │ ├── i_styleable.js │ ├── i_toolbox.js │ └── i_toolbox_item.js ├── keyboard_nav │ ├── ast_node.js │ ├── basic_cursor.js │ ├── cursor.js │ ├── marker.js │ └── tab_navigate_cursor.js ├── marker_manager.js ├── menu.js ├── menuitem.js ├── metrics_manager.js ├── msg.js ├── mutator.js ├── names.js ├── options.js ├── positionable_helpers.js ├── procedures.js ├── pxt_blockly_events.js ├── pxt_blockly_functions.js ├── pxt_blockly_utils.js ├── pxt_breakpoint.js ├── pxt_utils.js ├── registry.js ├── rendered_connection.js ├── renderers │ ├── common │ │ ├── block_rendering.js │ │ ├── constants.js │ │ ├── debugger.js │ │ ├── drawer.js │ │ ├── i_path_object.js │ │ ├── info.js │ │ ├── marker_svg.js │ │ ├── path_object.js │ │ └── renderer.js │ ├── geras │ │ ├── constants.js │ │ ├── drawer.js │ │ ├── highlight_constants.js │ │ ├── highlighter.js │ │ ├── info.js │ │ ├── measurables │ │ │ └── inputs.js │ │ ├── path_object.js │ │ └── renderer.js │ ├── measurables │ │ ├── base.js │ │ ├── connections.js │ │ ├── inputs.js │ │ ├── row_elements.js │ │ ├── rows.js │ │ └── types.js │ ├── minimalist │ │ ├── constants.js │ │ ├── drawer.js │ │ ├── info.js │ │ └── renderer.js │ ├── pxt │ │ ├── constants.js │ │ ├── drawer.js │ │ ├── info.js │ │ ├── measurables │ │ │ └── rows.js │ │ ├── path_object.js │ │ └── renderer.js │ ├── thrasos │ │ ├── info.js │ │ └── renderer.js │ └── zelos │ │ ├── constants.js │ │ ├── drawer.js │ │ ├── info.js │ │ ├── marker_svg.js │ │ ├── measurables │ │ ├── inputs.js │ │ ├── row_elements.js │ │ └── rows.js │ │ ├── path_object.js │ │ └── renderer.js ├── requires.js ├── scrollbar.js ├── shortcut_items.js ├── shortcut_registry.js ├── theme.js ├── theme │ ├── classic.js │ ├── dark.js │ ├── deuteranopia.js │ ├── highcontrast.js │ ├── modern.js │ ├── tritanopia.js │ └── zelos.js ├── theme_manager.js ├── toolbox │ ├── category.js │ ├── collapsible_category.js │ ├── separator.js │ ├── toolbox.js │ └── toolbox_item.js ├── tooltip.js ├── touch.js ├── touch_gesture.js ├── trashcan.js ├── utils.js ├── utils │ ├── aria.js │ ├── colour.js │ ├── coordinate.js │ ├── deprecation.js │ ├── dom.js │ ├── global.js │ ├── idgenerator.js │ ├── keycodes.js │ ├── math.js │ ├── metrics.js │ ├── object.js │ ├── rect.js │ ├── size.js │ ├── string.js │ ├── style.js │ ├── svg.js │ ├── svg_paths.js │ ├── toolbox.js │ ├── useragent.js │ └── xml.js ├── variable_map.js ├── variable_model.js ├── variables.js ├── variables_dynamic.js ├── warning.js ├── widgetdiv.js ├── workspace.js ├── workspace_audio.js ├── workspace_comment.js ├── workspace_comment_render_svg.js ├── workspace_comment_svg.js ├── workspace_drag_surface_svg.js ├── workspace_dragger.js ├── workspace_svg.js ├── xml.js └── zoom_controls.js ├── dart_compressed.js ├── dart_compressed.js.map ├── externs ├── block-externs.js ├── generator-externs.js ├── goog-externs.js └── svg-externs.js ├── generators ├── dart.js ├── dart │ ├── colour.js │ ├── lists.js │ ├── logic.js │ ├── loops.js │ ├── math.js │ ├── procedures.js │ ├── text.js │ ├── variables.js │ └── variables_dynamic.js ├── javascript.js ├── javascript │ ├── colour.js │ ├── lists.js │ ├── logic.js │ ├── loops.js │ ├── math.js │ ├── procedures.js │ ├── text.js │ ├── variables.js │ └── variables_dynamic.js ├── lua.js ├── lua │ ├── colour.js │ ├── lists.js │ ├── logic.js │ ├── loops.js │ ├── math.js │ ├── procedures.js │ ├── text.js │ ├── variables.js │ └── variables_dynamic.js ├── php.js ├── php │ ├── colour.js │ ├── lists.js │ ├── logic.js │ ├── loops.js │ ├── math.js │ ├── procedures.js │ ├── text.js │ ├── variables.js │ └── variables_dynamic.js ├── python.js └── python │ ├── colour.js │ ├── lists.js │ ├── logic.js │ ├── loops.js │ ├── math.js │ ├── procedures.js │ ├── text.js │ ├── variables.js │ └── variables_dynamic.js ├── gh-pages ├── Gemfile ├── _config.yml └── index.md ├── gulpfile.js ├── javascript_compressed.js ├── javascript_compressed.js.map ├── jsconfig.json ├── lua_compressed.js ├── lua_compressed.js.map ├── media ├── 1x1.gif ├── add.svg ├── arrow.svg ├── click.mp3 ├── click.ogg ├── click.wav ├── comment-arrow-down.svg ├── comment-arrow-up.svg ├── delete-x.svg ├── delete.mp3 ├── delete.ogg ├── delete.wav ├── disconnect.mp3 ├── disconnect.ogg ├── disconnect.wav ├── dropdown-arrow-dark.svg ├── dropdown-arrow.svg ├── handclosed.cur ├── handdelete.cur ├── handopen.cur ├── pilcrow.png ├── position_eyedropper.svg ├── question.svg ├── quote0.png ├── quote0.svg ├── quote1.png ├── quote1.svg ├── remove.svg ├── removeArg.svg ├── sprites.png └── sprites.svg ├── msg ├── js │ ├── ab.js │ ├── ace.js │ ├── af.js │ ├── am.js │ ├── ar.js │ ├── ast.js │ ├── az.js │ ├── ba.js │ ├── bcc.js │ ├── be-tarask.js │ ├── be.js │ ├── bg.js │ ├── bn.js │ ├── br.js │ ├── bs.js │ ├── ca.js │ ├── cdo.js │ ├── cs.js │ ├── da.js │ ├── de.js │ ├── diq.js │ ├── dty.js │ ├── ee.js │ ├── el.js │ ├── en-gb.js │ ├── en.js │ ├── eo.js │ ├── es.js │ ├── et.js │ ├── eu.js │ ├── fa.js │ ├── fi.js │ ├── fo.js │ ├── fr.js │ ├── frr.js │ ├── gl.js │ ├── gn.js │ ├── gor.js │ ├── ha.js │ ├── hak.js │ ├── he.js │ ├── hi.js │ ├── hr.js │ ├── hrx.js │ ├── hu.js │ ├── hy.js │ ├── ia.js │ ├── id.js │ ├── ig.js │ ├── inh.js │ ├── is.js │ ├── it.js │ ├── ja.js │ ├── ka.js │ ├── kab.js │ ├── kbd-cyrl.js │ ├── km.js │ ├── kn.js │ ├── ko.js │ ├── ksh.js │ ├── ku-latn.js │ ├── ky.js │ ├── la.js │ ├── lb.js │ ├── lki.js │ ├── lo.js │ ├── lrc.js │ ├── lt.js │ ├── lv.js │ ├── mg.js │ ├── mk.js │ ├── ml.js │ ├── mnw.js │ ├── ms.js │ ├── my.js │ ├── mzn.js │ ├── nb.js │ ├── ne.js │ ├── nl.js │ ├── oc.js │ ├── olo.js │ ├── pa.js │ ├── pl.js │ ├── pms.js │ ├── ps.js │ ├── pt-br.js │ ├── pt.js │ ├── ro.js │ ├── ru.js │ ├── sc.js │ ├── sco.js │ ├── sd.js │ ├── shn.js │ ├── si.js │ ├── sk.js │ ├── skr-arab.js │ ├── sl.js │ ├── sq.js │ ├── sr-latn.js │ ├── sr.js │ ├── sv.js │ ├── sw.js │ ├── ta.js │ ├── tcy.js │ ├── te.js │ ├── th.js │ ├── ti.js │ ├── tl.js │ ├── tlh.js │ ├── tr.js │ ├── ug-arab.js │ ├── uk.js │ ├── ur.js │ ├── uz.js │ ├── vi.js │ ├── xmf.js │ ├── yo.js │ ├── yue.js │ ├── zgh.js │ ├── zh-hans.js │ └── zh-hant.js ├── json │ ├── ab.json │ ├── ace.json │ ├── af.json │ ├── am.json │ ├── ar.json │ ├── ast.json │ ├── az.json │ ├── ba.json │ ├── bcc.json │ ├── be-tarask.json │ ├── be.json │ ├── bg.json │ ├── bn.json │ ├── br.json │ ├── bs.json │ ├── ca.json │ ├── cdo.json │ ├── constants.json │ ├── cs.json │ ├── da.json │ ├── de.json │ ├── diq.json │ ├── dty.json │ ├── ee.json │ ├── el.json │ ├── en-gb.json │ ├── en.json │ ├── eo.json │ ├── es.json │ ├── et.json │ ├── eu.json │ ├── fa.json │ ├── fi.json │ ├── fo.json │ ├── fr.json │ ├── frr.json │ ├── gl.json │ ├── gn.json │ ├── gor.json │ ├── ha.json │ ├── hak.json │ ├── he.json │ ├── hi.json │ ├── hr.json │ ├── hrx.json │ ├── hu.json │ ├── hy.json │ ├── ia.json │ ├── id.json │ ├── ig.json │ ├── inh.json │ ├── is.json │ ├── it.json │ ├── ja.json │ ├── ka.json │ ├── kab.json │ ├── kbd-cyrl.json │ ├── km.json │ ├── kn.json │ ├── ko.json │ ├── ksh.json │ ├── ku-latn.json │ ├── ky.json │ ├── la.json │ ├── lb.json │ ├── lki.json │ ├── lo.json │ ├── lrc.json │ ├── lt.json │ ├── lv.json │ ├── mg.json │ ├── mk.json │ ├── ml.json │ ├── mnw.json │ ├── ms.json │ ├── my.json │ ├── mzn.json │ ├── nb.json │ ├── ne.json │ ├── nl.json │ ├── oc.json │ ├── olo.json │ ├── pa.json │ ├── pl.json │ ├── pms.json │ ├── ps.json │ ├── pt-br.json │ ├── pt.json │ ├── qqq.json │ ├── ro.json │ ├── ru.json │ ├── sc.json │ ├── sco.json │ ├── sd.json │ ├── shn.json │ ├── si.json │ ├── sk.json │ ├── skr-arab.json │ ├── sl.json │ ├── sq.json │ ├── sr-latn.json │ ├── sr.json │ ├── sv.json │ ├── sw.json │ ├── ta.json │ ├── tcy.json │ ├── te.json │ ├── th.json │ ├── ti.json │ ├── tl.json │ ├── tlh.json │ ├── tr.json │ ├── ug-arab.json │ ├── uk.json │ ├── ur.json │ ├── uz.json │ ├── vi.json │ ├── xmf.json │ ├── yo.json │ ├── yue.json │ ├── zgh.json │ ├── zh-hans.json │ └── zh-hant.json └── messages.js ├── package.json ├── php_compressed.js ├── php_compressed.js.map ├── python_compressed.js ├── python_compressed.js.map ├── scripts ├── gulpfiles │ ├── appengine_tasks.js │ ├── build_tasks.js │ ├── cleanup_tasks.js │ ├── git_tasks.js │ ├── helper_tasks.js │ ├── license_tasks.js │ ├── package_tasks.js │ ├── pxt_tasks.js │ ├── release_tasks.js │ └── typings.js ├── i18n │ ├── common.py │ ├── create_messages.py │ ├── dedup_json.py │ ├── js_to_json.py │ └── tests.py ├── package │ ├── README.md │ ├── blockly.js │ ├── blocks.js │ ├── browser │ │ ├── core.js │ │ └── index.js │ ├── dart.js │ ├── index.js │ ├── javascript.js │ ├── lua.js │ ├── node │ │ ├── core.js │ │ └── index.js │ ├── php.js │ ├── python.js │ └── templates │ │ ├── node.template │ │ └── umd.template └── themes │ ├── blockStyles_example.json │ └── create_blockStyles.py ├── shim ├── blockly_compressed-blocks_compressed.js ├── blockly_compressed.Blockly.js ├── blockly_compressed.goog.js ├── blockly_compressed.js ├── blocks_compressed.js ├── gh-pages.js ├── index.js └── vertical.js ├── tests ├── compile │ ├── index.html │ ├── main.js │ ├── pxt_test_blocks.js │ └── test_blocks.js ├── functions_playground.html ├── generators │ ├── colour.xml │ ├── functions.xml │ ├── golden │ │ ├── generated.dart │ │ ├── generated.js │ │ ├── generated.lua │ │ ├── generated.php │ │ └── generated.py │ ├── index.html │ ├── lists.xml │ ├── logic.xml │ ├── loops1.xml │ ├── loops2.xml │ ├── loops3.xml │ ├── math.xml │ ├── run_generators_in_browser.js │ ├── text.xml │ ├── unittest.js │ ├── unittest_dart.js │ ├── unittest_javascript.js │ ├── unittest_lua.js │ ├── unittest_php.js │ ├── unittest_python.js │ └── variables.xml ├── iframe.html ├── jsunit │ └── connection_test.js ├── media │ ├── 200px.png │ ├── 30px.png │ ├── 50px.png │ ├── a.png │ ├── arrow.png │ ├── b.png │ ├── c.png │ ├── d.png │ ├── e.png │ ├── f.png │ ├── g.png │ ├── h.png │ ├── i.png │ ├── j.png │ ├── k.png │ ├── l.png │ └── m.png ├── mocha │ ├── .eslintrc.json │ ├── .mocharc.js │ ├── astnode_test.js │ ├── block_json_test.js │ ├── block_test.js │ ├── comment_test.js │ ├── connection_checker_test.js │ ├── connection_db_test.js │ ├── connection_test.js │ ├── contextmenu_items_test.js │ ├── cursor_test.js │ ├── dropdowndiv_test.js │ ├── event_test.js │ ├── extensions_test.js │ ├── field_angle_test.js │ ├── field_checkbox_test.js │ ├── field_colour_test.js │ ├── field_dropdown_test.js │ ├── field_image_test.js │ ├── field_label_serializable_test.js │ ├── field_label_test.js │ ├── field_multilineinput_test.js │ ├── field_number_test.js │ ├── field_registry_test.js │ ├── field_test.js │ ├── field_textinput_test.js │ ├── field_variable_test.js │ ├── flyout_test.js │ ├── generator_test.js │ ├── gesture_test.js │ ├── index.html │ ├── input_test.js │ ├── insertion_marker_test.js │ ├── json_test.js │ ├── keydown_test.js │ ├── logic_ternary_test.js │ ├── metrics_test.js │ ├── names_test.js │ ├── procedures_test.js │ ├── procedures_test_helpers.js │ ├── registry_test.js │ ├── run_mocha_tests_in_browser.js │ ├── shortcut_registry_test.js │ ├── test_helpers.js │ ├── theme_test.js │ ├── toolbox_helper.js │ ├── toolbox_test.js │ ├── tooltip_test.js │ ├── trashcan_test.js │ ├── utils_test.js │ ├── variable_map_test.js │ ├── variable_model_test.js │ ├── variables_test.js │ ├── widget_div_test.js │ ├── workspace_comment_test.js │ ├── workspace_svg_test.js │ ├── workspace_test.js │ ├── xml_test.js │ └── zoom_controls_test.js ├── multi_playground.html ├── node │ ├── .eslintrc.json │ ├── .mocharc.js │ └── run_node_test.js ├── playground.html ├── playgrounds │ ├── advanced_playground.html │ ├── iframe.html │ └── screenshot.js ├── rendering │ ├── svg_paths.html │ └── zelos │ │ ├── README.md │ │ ├── index.html │ │ ├── pxtblockly.html │ │ ├── pxtblockly │ │ ├── index.html │ │ ├── pxtblockly.html │ │ └── zelos.html │ │ ├── scratchblocks │ │ ├── index.html │ │ ├── scratchblocks.html │ │ └── zelos.html │ │ └── zelos.html ├── run_all_tests.sh ├── scripts │ ├── check_metadata.sh │ ├── compile_typings.sh │ ├── get_chromedriver.sh │ ├── run_generators.sh │ ├── selenium-config.js │ ├── setup_linux_env.sh │ └── setup_osx_env.sh ├── themes │ └── test_themes.js └── xml │ ├── README.txt │ ├── blockly.xsd │ ├── invalid.xml │ ├── toolbox.xml │ └── workspace.xml ├── typings ├── README.md ├── blockly.d.ts ├── blocks.d.ts ├── core.d.ts ├── dart.d.ts ├── index.d.ts ├── javascript.d.ts ├── lua.d.ts ├── msg │ ├── ab.d.ts │ ├── ace.d.ts │ ├── af.d.ts │ ├── am.d.ts │ ├── ar.d.ts │ ├── ast.d.ts │ ├── az.d.ts │ ├── ba.d.ts │ ├── bcc.d.ts │ ├── be-tarask.d.ts │ ├── be.d.ts │ ├── bg.d.ts │ ├── bn.d.ts │ ├── br.d.ts │ ├── bs.d.ts │ ├── ca.d.ts │ ├── cdo.d.ts │ ├── constants.d.ts │ ├── cs.d.ts │ ├── da.d.ts │ ├── de.d.ts │ ├── diq.d.ts │ ├── dty.d.ts │ ├── ee.d.ts │ ├── el.d.ts │ ├── en-gb.d.ts │ ├── en.d.ts │ ├── eo.d.ts │ ├── es.d.ts │ ├── et.d.ts │ ├── eu.d.ts │ ├── fa.d.ts │ ├── fi.d.ts │ ├── fo.d.ts │ ├── fr.d.ts │ ├── frr.d.ts │ ├── gl.d.ts │ ├── gn.d.ts │ ├── gor.d.ts │ ├── ha.d.ts │ ├── hak.d.ts │ ├── he.d.ts │ ├── hi.d.ts │ ├── hr.d.ts │ ├── hrx.d.ts │ ├── hu.d.ts │ ├── hy.d.ts │ ├── ia.d.ts │ ├── id.d.ts │ ├── ig.d.ts │ ├── inh.d.ts │ ├── is.d.ts │ ├── it.d.ts │ ├── ja.d.ts │ ├── ka.d.ts │ ├── kab.d.ts │ ├── kbd-cyrl.d.ts │ ├── km.d.ts │ ├── kn.d.ts │ ├── ko.d.ts │ ├── ksh.d.ts │ ├── ku-latn.d.ts │ ├── ky.d.ts │ ├── la.d.ts │ ├── lb.d.ts │ ├── lki.d.ts │ ├── lo.d.ts │ ├── lrc.d.ts │ ├── lt.d.ts │ ├── lv.d.ts │ ├── mg.d.ts │ ├── mk.d.ts │ ├── ml.d.ts │ ├── mnw.d.ts │ ├── ms.d.ts │ ├── my.d.ts │ ├── mzn.d.ts │ ├── nb.d.ts │ ├── ne.d.ts │ ├── nl.d.ts │ ├── oc.d.ts │ ├── olo.d.ts │ ├── pa.d.ts │ ├── pl.d.ts │ ├── pms.d.ts │ ├── ps.d.ts │ ├── pt-br.d.ts │ ├── pt.d.ts │ ├── qqq.d.ts │ ├── ro.d.ts │ ├── ru.d.ts │ ├── sc.d.ts │ ├── sco.d.ts │ ├── sd.d.ts │ ├── shn.d.ts │ ├── si.d.ts │ ├── sk.d.ts │ ├── skr-arab.d.ts │ ├── sl.d.ts │ ├── sq.d.ts │ ├── sr-latn.d.ts │ ├── sr.d.ts │ ├── sv.d.ts │ ├── sw.d.ts │ ├── synonyms.d.ts │ ├── ta.d.ts │ ├── tcy.d.ts │ ├── te.d.ts │ ├── th.d.ts │ ├── ti.d.ts │ ├── tl.d.ts │ ├── tlh.d.ts │ ├── tr.d.ts │ ├── ug-arab.d.ts │ ├── uk.d.ts │ ├── ur.d.ts │ ├── uz.d.ts │ ├── vi.d.ts │ ├── xmf.d.ts │ ├── yo.d.ts │ ├── yue.d.ts │ ├── zgh.d.ts │ ├── zh-hans.d.ts │ └── zh-hant.d.ts ├── php.d.ts ├── python.d.ts ├── templates │ ├── blockly-colours.template │ ├── blockly-header.template │ ├── blockly-interfaces.template │ ├── goog-closure.template │ └── msg.template └── tsconfig.json ├── vivian-build.ps1 └── webpack.config.js /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/appengine_deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/.github/workflows/appengine_deploy.yml -------------------------------------------------------------------------------- /.github/workflows/build-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/.github/workflows/build-release.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/.npmrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/SECURITY.md -------------------------------------------------------------------------------- /THIRD-PARTY-NOTICES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/THIRD-PARTY-NOTICES.txt -------------------------------------------------------------------------------- /appengine/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/appengine/.gcloudignore -------------------------------------------------------------------------------- /appengine/add_timestamps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/appengine/add_timestamps.py -------------------------------------------------------------------------------- /appengine/expiration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/appengine/expiration.py -------------------------------------------------------------------------------- /appengine/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/appengine/main.py -------------------------------------------------------------------------------- /appengine/requirements.txt: -------------------------------------------------------------------------------- 1 | google-cloud-ndb 2 | -------------------------------------------------------------------------------- /blockly_compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/blockly_compressed.js -------------------------------------------------------------------------------- /blockly_compressed.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/blockly_compressed.js.map -------------------------------------------------------------------------------- /blockly_uncompressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/blockly_uncompressed.js -------------------------------------------------------------------------------- /blocks/colour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/blocks/colour.js -------------------------------------------------------------------------------- /blocks/extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/blocks/extensions.js -------------------------------------------------------------------------------- /blocks/lists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/blocks/lists.js -------------------------------------------------------------------------------- /blocks/logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/blocks/logic.js -------------------------------------------------------------------------------- /blocks/loops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/blocks/loops.js -------------------------------------------------------------------------------- /blocks/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/blocks/math.js -------------------------------------------------------------------------------- /blocks/procedures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/blocks/procedures.js -------------------------------------------------------------------------------- /blocks/pxt_blockly_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/blocks/pxt_blockly_functions.js -------------------------------------------------------------------------------- /blocks/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/blocks/text.js -------------------------------------------------------------------------------- /blocks/variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/blocks/variables.js -------------------------------------------------------------------------------- /blocks/variables_dynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/blocks/variables_dynamic.js -------------------------------------------------------------------------------- /blocks_compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/blocks_compressed.js -------------------------------------------------------------------------------- /blocks_compressed.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/blocks_compressed.js.map -------------------------------------------------------------------------------- /cleanup-scratch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/cleanup-scratch.sh -------------------------------------------------------------------------------- /cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/cleanup.sh -------------------------------------------------------------------------------- /closure/bin/calcdeps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/closure/bin/calcdeps.py -------------------------------------------------------------------------------- /closure/goog/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/closure/goog/base.js -------------------------------------------------------------------------------- /core/block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/block.js -------------------------------------------------------------------------------- /core/block_animations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/block_animations.js -------------------------------------------------------------------------------- /core/block_drag_surface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/block_drag_surface.js -------------------------------------------------------------------------------- /core/block_dragger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/block_dragger.js -------------------------------------------------------------------------------- /core/block_svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/block_svg.js -------------------------------------------------------------------------------- /core/blockly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/blockly.js -------------------------------------------------------------------------------- /core/blocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/blocks.js -------------------------------------------------------------------------------- /core/browser_events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/browser_events.js -------------------------------------------------------------------------------- /core/bubble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/bubble.js -------------------------------------------------------------------------------- /core/bubble_dragger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/bubble_dragger.js -------------------------------------------------------------------------------- /core/colours.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/colours.js -------------------------------------------------------------------------------- /core/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/comment.js -------------------------------------------------------------------------------- /core/component_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/component_manager.js -------------------------------------------------------------------------------- /core/components/menu/menuseparator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/components/menu/menuseparator.js -------------------------------------------------------------------------------- /core/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/connection.js -------------------------------------------------------------------------------- /core/connection_checker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/connection_checker.js -------------------------------------------------------------------------------- /core/connection_db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/connection_db.js -------------------------------------------------------------------------------- /core/connection_types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/connection_types.js -------------------------------------------------------------------------------- /core/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/constants.js -------------------------------------------------------------------------------- /core/contextmenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/contextmenu.js -------------------------------------------------------------------------------- /core/contextmenu_items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/contextmenu_items.js -------------------------------------------------------------------------------- /core/contextmenu_registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/contextmenu_registry.js -------------------------------------------------------------------------------- /core/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/css.js -------------------------------------------------------------------------------- /core/delete_area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/delete_area.js -------------------------------------------------------------------------------- /core/drag_target.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/drag_target.js -------------------------------------------------------------------------------- /core/dropdowndiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/dropdowndiv.js -------------------------------------------------------------------------------- /core/events/block_events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/events/block_events.js -------------------------------------------------------------------------------- /core/events/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/events/events.js -------------------------------------------------------------------------------- /core/events/events_abstract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/events/events_abstract.js -------------------------------------------------------------------------------- /core/events/events_block_drag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/events/events_block_drag.js -------------------------------------------------------------------------------- /core/events/events_bubble_open.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/events/events_bubble_open.js -------------------------------------------------------------------------------- /core/events/events_click.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/events/events_click.js -------------------------------------------------------------------------------- /core/events/events_marker_move.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/events/events_marker_move.js -------------------------------------------------------------------------------- /core/events/events_selected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/events/events_selected.js -------------------------------------------------------------------------------- /core/events/events_theme_change.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/events/events_theme_change.js -------------------------------------------------------------------------------- /core/events/events_trashcan_open.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/events/events_trashcan_open.js -------------------------------------------------------------------------------- /core/events/events_viewport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/events/events_viewport.js -------------------------------------------------------------------------------- /core/events/ui_events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/events/ui_events.js -------------------------------------------------------------------------------- /core/events/variable_events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/events/variable_events.js -------------------------------------------------------------------------------- /core/events/workspace_events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/events/workspace_events.js -------------------------------------------------------------------------------- /core/events/ws_comment_events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/events/ws_comment_events.js -------------------------------------------------------------------------------- /core/extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/extensions.js -------------------------------------------------------------------------------- /core/field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/field.js -------------------------------------------------------------------------------- /core/field_angle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/field_angle.js -------------------------------------------------------------------------------- /core/field_argumenteditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/field_argumenteditor.js -------------------------------------------------------------------------------- /core/field_checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/field_checkbox.js -------------------------------------------------------------------------------- /core/field_colour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/field_colour.js -------------------------------------------------------------------------------- /core/field_colour_slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/field_colour_slider.js -------------------------------------------------------------------------------- /core/field_dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/field_dropdown.js -------------------------------------------------------------------------------- /core/field_iconmenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/field_iconmenu.js -------------------------------------------------------------------------------- /core/field_image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/field_image.js -------------------------------------------------------------------------------- /core/field_label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/field_label.js -------------------------------------------------------------------------------- /core/field_label_hover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/field_label_hover.js -------------------------------------------------------------------------------- /core/field_label_serializable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/field_label_serializable.js -------------------------------------------------------------------------------- /core/field_multilineinput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/field_multilineinput.js -------------------------------------------------------------------------------- /core/field_number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/field_number.js -------------------------------------------------------------------------------- /core/field_numberdropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/field_numberdropdown.js -------------------------------------------------------------------------------- /core/field_registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/field_registry.js -------------------------------------------------------------------------------- /core/field_slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/field_slider.js -------------------------------------------------------------------------------- /core/field_string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/field_string.js -------------------------------------------------------------------------------- /core/field_textdropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/field_textdropdown.js -------------------------------------------------------------------------------- /core/field_textinput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/field_textinput.js -------------------------------------------------------------------------------- /core/field_variable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/field_variable.js -------------------------------------------------------------------------------- /core/field_variable_getter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/field_variable_getter.js -------------------------------------------------------------------------------- /core/field_vertical_separator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/field_vertical_separator.js -------------------------------------------------------------------------------- /core/flyout_base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/flyout_base.js -------------------------------------------------------------------------------- /core/flyout_button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/flyout_button.js -------------------------------------------------------------------------------- /core/flyout_horizontal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/flyout_horizontal.js -------------------------------------------------------------------------------- /core/flyout_vertical.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/flyout_vertical.js -------------------------------------------------------------------------------- /core/generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/generator.js -------------------------------------------------------------------------------- /core/gesture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/gesture.js -------------------------------------------------------------------------------- /core/grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/grid.js -------------------------------------------------------------------------------- /core/icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/icon.js -------------------------------------------------------------------------------- /core/inject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/inject.js -------------------------------------------------------------------------------- /core/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/input.js -------------------------------------------------------------------------------- /core/input_types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/input_types.js -------------------------------------------------------------------------------- /core/insertion_marker_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/insertion_marker_manager.js -------------------------------------------------------------------------------- /core/interfaces/i_accessibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/interfaces/i_accessibility.js -------------------------------------------------------------------------------- /core/interfaces/i_autohideable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/interfaces/i_autohideable.js -------------------------------------------------------------------------------- /core/interfaces/i_block_dragger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/interfaces/i_block_dragger.js -------------------------------------------------------------------------------- /core/interfaces/i_bounded_element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/interfaces/i_bounded_element.js -------------------------------------------------------------------------------- /core/interfaces/i_bubble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/interfaces/i_bubble.js -------------------------------------------------------------------------------- /core/interfaces/i_component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/interfaces/i_component.js -------------------------------------------------------------------------------- /core/interfaces/i_connection_checker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/interfaces/i_connection_checker.js -------------------------------------------------------------------------------- /core/interfaces/i_contextmenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/interfaces/i_contextmenu.js -------------------------------------------------------------------------------- /core/interfaces/i_copyable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/interfaces/i_copyable.js -------------------------------------------------------------------------------- /core/interfaces/i_deletable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/interfaces/i_deletable.js -------------------------------------------------------------------------------- /core/interfaces/i_delete_area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/interfaces/i_delete_area.js -------------------------------------------------------------------------------- /core/interfaces/i_drag_target.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/interfaces/i_drag_target.js -------------------------------------------------------------------------------- /core/interfaces/i_draggable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/interfaces/i_draggable.js -------------------------------------------------------------------------------- /core/interfaces/i_flyout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/interfaces/i_flyout.js -------------------------------------------------------------------------------- /core/interfaces/i_metrics_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/interfaces/i_metrics_manager.js -------------------------------------------------------------------------------- /core/interfaces/i_movable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/interfaces/i_movable.js -------------------------------------------------------------------------------- /core/interfaces/i_positionable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/interfaces/i_positionable.js -------------------------------------------------------------------------------- /core/interfaces/i_registrable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/interfaces/i_registrable.js -------------------------------------------------------------------------------- /core/interfaces/i_registrable_field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/interfaces/i_registrable_field.js -------------------------------------------------------------------------------- /core/interfaces/i_selectable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/interfaces/i_selectable.js -------------------------------------------------------------------------------- /core/interfaces/i_styleable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/interfaces/i_styleable.js -------------------------------------------------------------------------------- /core/interfaces/i_toolbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/interfaces/i_toolbox.js -------------------------------------------------------------------------------- /core/interfaces/i_toolbox_item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/interfaces/i_toolbox_item.js -------------------------------------------------------------------------------- /core/keyboard_nav/ast_node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/keyboard_nav/ast_node.js -------------------------------------------------------------------------------- /core/keyboard_nav/basic_cursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/keyboard_nav/basic_cursor.js -------------------------------------------------------------------------------- /core/keyboard_nav/cursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/keyboard_nav/cursor.js -------------------------------------------------------------------------------- /core/keyboard_nav/marker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/keyboard_nav/marker.js -------------------------------------------------------------------------------- /core/keyboard_nav/tab_navigate_cursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/keyboard_nav/tab_navigate_cursor.js -------------------------------------------------------------------------------- /core/marker_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/marker_manager.js -------------------------------------------------------------------------------- /core/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/menu.js -------------------------------------------------------------------------------- /core/menuitem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/menuitem.js -------------------------------------------------------------------------------- /core/metrics_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/metrics_manager.js -------------------------------------------------------------------------------- /core/msg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/msg.js -------------------------------------------------------------------------------- /core/mutator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/mutator.js -------------------------------------------------------------------------------- /core/names.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/names.js -------------------------------------------------------------------------------- /core/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/options.js -------------------------------------------------------------------------------- /core/positionable_helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/positionable_helpers.js -------------------------------------------------------------------------------- /core/procedures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/procedures.js -------------------------------------------------------------------------------- /core/pxt_blockly_events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/pxt_blockly_events.js -------------------------------------------------------------------------------- /core/pxt_blockly_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/pxt_blockly_functions.js -------------------------------------------------------------------------------- /core/pxt_blockly_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/pxt_blockly_utils.js -------------------------------------------------------------------------------- /core/pxt_breakpoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/pxt_breakpoint.js -------------------------------------------------------------------------------- /core/pxt_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/pxt_utils.js -------------------------------------------------------------------------------- /core/registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/registry.js -------------------------------------------------------------------------------- /core/rendered_connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/rendered_connection.js -------------------------------------------------------------------------------- /core/renderers/common/block_rendering.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/common/block_rendering.js -------------------------------------------------------------------------------- /core/renderers/common/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/common/constants.js -------------------------------------------------------------------------------- /core/renderers/common/debugger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/common/debugger.js -------------------------------------------------------------------------------- /core/renderers/common/drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/common/drawer.js -------------------------------------------------------------------------------- /core/renderers/common/i_path_object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/common/i_path_object.js -------------------------------------------------------------------------------- /core/renderers/common/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/common/info.js -------------------------------------------------------------------------------- /core/renderers/common/marker_svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/common/marker_svg.js -------------------------------------------------------------------------------- /core/renderers/common/path_object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/common/path_object.js -------------------------------------------------------------------------------- /core/renderers/common/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/common/renderer.js -------------------------------------------------------------------------------- /core/renderers/geras/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/geras/constants.js -------------------------------------------------------------------------------- /core/renderers/geras/drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/geras/drawer.js -------------------------------------------------------------------------------- /core/renderers/geras/highlighter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/geras/highlighter.js -------------------------------------------------------------------------------- /core/renderers/geras/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/geras/info.js -------------------------------------------------------------------------------- /core/renderers/geras/path_object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/geras/path_object.js -------------------------------------------------------------------------------- /core/renderers/geras/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/geras/renderer.js -------------------------------------------------------------------------------- /core/renderers/measurables/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/measurables/base.js -------------------------------------------------------------------------------- /core/renderers/measurables/inputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/measurables/inputs.js -------------------------------------------------------------------------------- /core/renderers/measurables/rows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/measurables/rows.js -------------------------------------------------------------------------------- /core/renderers/measurables/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/measurables/types.js -------------------------------------------------------------------------------- /core/renderers/minimalist/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/minimalist/constants.js -------------------------------------------------------------------------------- /core/renderers/minimalist/drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/minimalist/drawer.js -------------------------------------------------------------------------------- /core/renderers/minimalist/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/minimalist/info.js -------------------------------------------------------------------------------- /core/renderers/minimalist/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/minimalist/renderer.js -------------------------------------------------------------------------------- /core/renderers/pxt/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/pxt/constants.js -------------------------------------------------------------------------------- /core/renderers/pxt/drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/pxt/drawer.js -------------------------------------------------------------------------------- /core/renderers/pxt/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/pxt/info.js -------------------------------------------------------------------------------- /core/renderers/pxt/measurables/rows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/pxt/measurables/rows.js -------------------------------------------------------------------------------- /core/renderers/pxt/path_object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/pxt/path_object.js -------------------------------------------------------------------------------- /core/renderers/pxt/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/pxt/renderer.js -------------------------------------------------------------------------------- /core/renderers/thrasos/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/thrasos/info.js -------------------------------------------------------------------------------- /core/renderers/thrasos/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/thrasos/renderer.js -------------------------------------------------------------------------------- /core/renderers/zelos/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/zelos/constants.js -------------------------------------------------------------------------------- /core/renderers/zelos/drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/zelos/drawer.js -------------------------------------------------------------------------------- /core/renderers/zelos/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/zelos/info.js -------------------------------------------------------------------------------- /core/renderers/zelos/marker_svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/zelos/marker_svg.js -------------------------------------------------------------------------------- /core/renderers/zelos/measurables/rows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/zelos/measurables/rows.js -------------------------------------------------------------------------------- /core/renderers/zelos/path_object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/zelos/path_object.js -------------------------------------------------------------------------------- /core/renderers/zelos/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/renderers/zelos/renderer.js -------------------------------------------------------------------------------- /core/requires.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/requires.js -------------------------------------------------------------------------------- /core/scrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/scrollbar.js -------------------------------------------------------------------------------- /core/shortcut_items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/shortcut_items.js -------------------------------------------------------------------------------- /core/shortcut_registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/shortcut_registry.js -------------------------------------------------------------------------------- /core/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/theme.js -------------------------------------------------------------------------------- /core/theme/classic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/theme/classic.js -------------------------------------------------------------------------------- /core/theme/dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/theme/dark.js -------------------------------------------------------------------------------- /core/theme/deuteranopia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/theme/deuteranopia.js -------------------------------------------------------------------------------- /core/theme/highcontrast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/theme/highcontrast.js -------------------------------------------------------------------------------- /core/theme/modern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/theme/modern.js -------------------------------------------------------------------------------- /core/theme/tritanopia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/theme/tritanopia.js -------------------------------------------------------------------------------- /core/theme/zelos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/theme/zelos.js -------------------------------------------------------------------------------- /core/theme_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/theme_manager.js -------------------------------------------------------------------------------- /core/toolbox/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/toolbox/category.js -------------------------------------------------------------------------------- /core/toolbox/collapsible_category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/toolbox/collapsible_category.js -------------------------------------------------------------------------------- /core/toolbox/separator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/toolbox/separator.js -------------------------------------------------------------------------------- /core/toolbox/toolbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/toolbox/toolbox.js -------------------------------------------------------------------------------- /core/toolbox/toolbox_item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/toolbox/toolbox_item.js -------------------------------------------------------------------------------- /core/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/tooltip.js -------------------------------------------------------------------------------- /core/touch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/touch.js -------------------------------------------------------------------------------- /core/touch_gesture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/touch_gesture.js -------------------------------------------------------------------------------- /core/trashcan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/trashcan.js -------------------------------------------------------------------------------- /core/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/utils.js -------------------------------------------------------------------------------- /core/utils/aria.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/utils/aria.js -------------------------------------------------------------------------------- /core/utils/colour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/utils/colour.js -------------------------------------------------------------------------------- /core/utils/coordinate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/utils/coordinate.js -------------------------------------------------------------------------------- /core/utils/deprecation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/utils/deprecation.js -------------------------------------------------------------------------------- /core/utils/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/utils/dom.js -------------------------------------------------------------------------------- /core/utils/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/utils/global.js -------------------------------------------------------------------------------- /core/utils/idgenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/utils/idgenerator.js -------------------------------------------------------------------------------- /core/utils/keycodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/utils/keycodes.js -------------------------------------------------------------------------------- /core/utils/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/utils/math.js -------------------------------------------------------------------------------- /core/utils/metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/utils/metrics.js -------------------------------------------------------------------------------- /core/utils/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/utils/object.js -------------------------------------------------------------------------------- /core/utils/rect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/utils/rect.js -------------------------------------------------------------------------------- /core/utils/size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/utils/size.js -------------------------------------------------------------------------------- /core/utils/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/utils/string.js -------------------------------------------------------------------------------- /core/utils/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/utils/style.js -------------------------------------------------------------------------------- /core/utils/svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/utils/svg.js -------------------------------------------------------------------------------- /core/utils/svg_paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/utils/svg_paths.js -------------------------------------------------------------------------------- /core/utils/toolbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/utils/toolbox.js -------------------------------------------------------------------------------- /core/utils/useragent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/utils/useragent.js -------------------------------------------------------------------------------- /core/utils/xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/utils/xml.js -------------------------------------------------------------------------------- /core/variable_map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/variable_map.js -------------------------------------------------------------------------------- /core/variable_model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/variable_model.js -------------------------------------------------------------------------------- /core/variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/variables.js -------------------------------------------------------------------------------- /core/variables_dynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/variables_dynamic.js -------------------------------------------------------------------------------- /core/warning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/warning.js -------------------------------------------------------------------------------- /core/widgetdiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/widgetdiv.js -------------------------------------------------------------------------------- /core/workspace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/workspace.js -------------------------------------------------------------------------------- /core/workspace_audio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/workspace_audio.js -------------------------------------------------------------------------------- /core/workspace_comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/workspace_comment.js -------------------------------------------------------------------------------- /core/workspace_comment_render_svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/workspace_comment_render_svg.js -------------------------------------------------------------------------------- /core/workspace_comment_svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/workspace_comment_svg.js -------------------------------------------------------------------------------- /core/workspace_drag_surface_svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/workspace_drag_surface_svg.js -------------------------------------------------------------------------------- /core/workspace_dragger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/workspace_dragger.js -------------------------------------------------------------------------------- /core/workspace_svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/workspace_svg.js -------------------------------------------------------------------------------- /core/xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/xml.js -------------------------------------------------------------------------------- /core/zoom_controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/core/zoom_controls.js -------------------------------------------------------------------------------- /dart_compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/dart_compressed.js -------------------------------------------------------------------------------- /dart_compressed.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/dart_compressed.js.map -------------------------------------------------------------------------------- /externs/block-externs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/externs/block-externs.js -------------------------------------------------------------------------------- /externs/generator-externs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/externs/generator-externs.js -------------------------------------------------------------------------------- /externs/goog-externs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/externs/goog-externs.js -------------------------------------------------------------------------------- /externs/svg-externs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/externs/svg-externs.js -------------------------------------------------------------------------------- /generators/dart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/dart.js -------------------------------------------------------------------------------- /generators/dart/colour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/dart/colour.js -------------------------------------------------------------------------------- /generators/dart/lists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/dart/lists.js -------------------------------------------------------------------------------- /generators/dart/logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/dart/logic.js -------------------------------------------------------------------------------- /generators/dart/loops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/dart/loops.js -------------------------------------------------------------------------------- /generators/dart/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/dart/math.js -------------------------------------------------------------------------------- /generators/dart/procedures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/dart/procedures.js -------------------------------------------------------------------------------- /generators/dart/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/dart/text.js -------------------------------------------------------------------------------- /generators/dart/variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/dart/variables.js -------------------------------------------------------------------------------- /generators/dart/variables_dynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/dart/variables_dynamic.js -------------------------------------------------------------------------------- /generators/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/javascript.js -------------------------------------------------------------------------------- /generators/javascript/colour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/javascript/colour.js -------------------------------------------------------------------------------- /generators/javascript/lists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/javascript/lists.js -------------------------------------------------------------------------------- /generators/javascript/logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/javascript/logic.js -------------------------------------------------------------------------------- /generators/javascript/loops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/javascript/loops.js -------------------------------------------------------------------------------- /generators/javascript/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/javascript/math.js -------------------------------------------------------------------------------- /generators/javascript/procedures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/javascript/procedures.js -------------------------------------------------------------------------------- /generators/javascript/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/javascript/text.js -------------------------------------------------------------------------------- /generators/javascript/variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/javascript/variables.js -------------------------------------------------------------------------------- /generators/lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/lua.js -------------------------------------------------------------------------------- /generators/lua/colour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/lua/colour.js -------------------------------------------------------------------------------- /generators/lua/lists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/lua/lists.js -------------------------------------------------------------------------------- /generators/lua/logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/lua/logic.js -------------------------------------------------------------------------------- /generators/lua/loops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/lua/loops.js -------------------------------------------------------------------------------- /generators/lua/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/lua/math.js -------------------------------------------------------------------------------- /generators/lua/procedures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/lua/procedures.js -------------------------------------------------------------------------------- /generators/lua/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/lua/text.js -------------------------------------------------------------------------------- /generators/lua/variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/lua/variables.js -------------------------------------------------------------------------------- /generators/lua/variables_dynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/lua/variables_dynamic.js -------------------------------------------------------------------------------- /generators/php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/php.js -------------------------------------------------------------------------------- /generators/php/colour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/php/colour.js -------------------------------------------------------------------------------- /generators/php/lists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/php/lists.js -------------------------------------------------------------------------------- /generators/php/logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/php/logic.js -------------------------------------------------------------------------------- /generators/php/loops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/php/loops.js -------------------------------------------------------------------------------- /generators/php/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/php/math.js -------------------------------------------------------------------------------- /generators/php/procedures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/php/procedures.js -------------------------------------------------------------------------------- /generators/php/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/php/text.js -------------------------------------------------------------------------------- /generators/php/variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/php/variables.js -------------------------------------------------------------------------------- /generators/php/variables_dynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/php/variables_dynamic.js -------------------------------------------------------------------------------- /generators/python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/python.js -------------------------------------------------------------------------------- /generators/python/colour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/python/colour.js -------------------------------------------------------------------------------- /generators/python/lists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/python/lists.js -------------------------------------------------------------------------------- /generators/python/logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/python/logic.js -------------------------------------------------------------------------------- /generators/python/loops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/python/loops.js -------------------------------------------------------------------------------- /generators/python/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/python/math.js -------------------------------------------------------------------------------- /generators/python/procedures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/python/procedures.js -------------------------------------------------------------------------------- /generators/python/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/python/text.js -------------------------------------------------------------------------------- /generators/python/variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/python/variables.js -------------------------------------------------------------------------------- /generators/python/variables_dynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/generators/python/variables_dynamic.js -------------------------------------------------------------------------------- /gh-pages/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/gh-pages/Gemfile -------------------------------------------------------------------------------- /gh-pages/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/gh-pages/_config.yml -------------------------------------------------------------------------------- /gh-pages/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/gh-pages/index.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/gulpfile.js -------------------------------------------------------------------------------- /javascript_compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/javascript_compressed.js -------------------------------------------------------------------------------- /javascript_compressed.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/javascript_compressed.js.map -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/jsconfig.json -------------------------------------------------------------------------------- /lua_compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/lua_compressed.js -------------------------------------------------------------------------------- /lua_compressed.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/lua_compressed.js.map -------------------------------------------------------------------------------- /media/1x1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/media/1x1.gif -------------------------------------------------------------------------------- /media/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/media/add.svg -------------------------------------------------------------------------------- /media/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/media/arrow.svg -------------------------------------------------------------------------------- /media/click.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/media/click.mp3 -------------------------------------------------------------------------------- /media/click.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/media/click.ogg -------------------------------------------------------------------------------- /media/click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/media/click.wav -------------------------------------------------------------------------------- /media/comment-arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/media/comment-arrow-down.svg -------------------------------------------------------------------------------- /media/comment-arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/media/comment-arrow-up.svg -------------------------------------------------------------------------------- /media/delete-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/media/delete-x.svg -------------------------------------------------------------------------------- /media/delete.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/media/delete.mp3 -------------------------------------------------------------------------------- /media/delete.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/media/delete.ogg -------------------------------------------------------------------------------- /media/delete.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/media/delete.wav -------------------------------------------------------------------------------- /media/disconnect.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/media/disconnect.mp3 -------------------------------------------------------------------------------- /media/disconnect.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/media/disconnect.ogg -------------------------------------------------------------------------------- /media/disconnect.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/media/disconnect.wav -------------------------------------------------------------------------------- /media/dropdown-arrow-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/media/dropdown-arrow-dark.svg -------------------------------------------------------------------------------- /media/dropdown-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/media/dropdown-arrow.svg -------------------------------------------------------------------------------- /media/handclosed.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/media/handclosed.cur -------------------------------------------------------------------------------- /media/handdelete.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/media/handdelete.cur -------------------------------------------------------------------------------- /media/handopen.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/media/handopen.cur -------------------------------------------------------------------------------- /media/pilcrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/media/pilcrow.png -------------------------------------------------------------------------------- /media/position_eyedropper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/media/position_eyedropper.svg -------------------------------------------------------------------------------- /media/question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/media/question.svg -------------------------------------------------------------------------------- /media/quote0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/media/quote0.png -------------------------------------------------------------------------------- /media/quote0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/media/quote0.svg -------------------------------------------------------------------------------- /media/quote1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/media/quote1.png -------------------------------------------------------------------------------- /media/quote1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/media/quote1.svg -------------------------------------------------------------------------------- /media/remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/media/remove.svg -------------------------------------------------------------------------------- /media/removeArg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/media/removeArg.svg -------------------------------------------------------------------------------- /media/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/media/sprites.png -------------------------------------------------------------------------------- /media/sprites.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/media/sprites.svg -------------------------------------------------------------------------------- /msg/js/ab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/ab.js -------------------------------------------------------------------------------- /msg/js/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/ace.js -------------------------------------------------------------------------------- /msg/js/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/af.js -------------------------------------------------------------------------------- /msg/js/am.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/am.js -------------------------------------------------------------------------------- /msg/js/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/ar.js -------------------------------------------------------------------------------- /msg/js/ast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/ast.js -------------------------------------------------------------------------------- /msg/js/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/az.js -------------------------------------------------------------------------------- /msg/js/ba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/ba.js -------------------------------------------------------------------------------- /msg/js/bcc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/bcc.js -------------------------------------------------------------------------------- /msg/js/be-tarask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/be-tarask.js -------------------------------------------------------------------------------- /msg/js/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/be.js -------------------------------------------------------------------------------- /msg/js/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/bg.js -------------------------------------------------------------------------------- /msg/js/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/bn.js -------------------------------------------------------------------------------- /msg/js/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/br.js -------------------------------------------------------------------------------- /msg/js/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/bs.js -------------------------------------------------------------------------------- /msg/js/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/ca.js -------------------------------------------------------------------------------- /msg/js/cdo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/cdo.js -------------------------------------------------------------------------------- /msg/js/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/cs.js -------------------------------------------------------------------------------- /msg/js/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/da.js -------------------------------------------------------------------------------- /msg/js/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/de.js -------------------------------------------------------------------------------- /msg/js/diq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/diq.js -------------------------------------------------------------------------------- /msg/js/dty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/dty.js -------------------------------------------------------------------------------- /msg/js/ee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/ee.js -------------------------------------------------------------------------------- /msg/js/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/el.js -------------------------------------------------------------------------------- /msg/js/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/en-gb.js -------------------------------------------------------------------------------- /msg/js/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/en.js -------------------------------------------------------------------------------- /msg/js/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/eo.js -------------------------------------------------------------------------------- /msg/js/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/es.js -------------------------------------------------------------------------------- /msg/js/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/et.js -------------------------------------------------------------------------------- /msg/js/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/eu.js -------------------------------------------------------------------------------- /msg/js/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/fa.js -------------------------------------------------------------------------------- /msg/js/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/fi.js -------------------------------------------------------------------------------- /msg/js/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/fo.js -------------------------------------------------------------------------------- /msg/js/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/fr.js -------------------------------------------------------------------------------- /msg/js/frr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/frr.js -------------------------------------------------------------------------------- /msg/js/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/gl.js -------------------------------------------------------------------------------- /msg/js/gn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/gn.js -------------------------------------------------------------------------------- /msg/js/gor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/gor.js -------------------------------------------------------------------------------- /msg/js/ha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/ha.js -------------------------------------------------------------------------------- /msg/js/hak.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/hak.js -------------------------------------------------------------------------------- /msg/js/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/he.js -------------------------------------------------------------------------------- /msg/js/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/hi.js -------------------------------------------------------------------------------- /msg/js/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/hr.js -------------------------------------------------------------------------------- /msg/js/hrx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/hrx.js -------------------------------------------------------------------------------- /msg/js/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/hu.js -------------------------------------------------------------------------------- /msg/js/hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/hy.js -------------------------------------------------------------------------------- /msg/js/ia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/ia.js -------------------------------------------------------------------------------- /msg/js/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/id.js -------------------------------------------------------------------------------- /msg/js/ig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/ig.js -------------------------------------------------------------------------------- /msg/js/inh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/inh.js -------------------------------------------------------------------------------- /msg/js/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/is.js -------------------------------------------------------------------------------- /msg/js/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/it.js -------------------------------------------------------------------------------- /msg/js/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/ja.js -------------------------------------------------------------------------------- /msg/js/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/ka.js -------------------------------------------------------------------------------- /msg/js/kab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/kab.js -------------------------------------------------------------------------------- /msg/js/kbd-cyrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/kbd-cyrl.js -------------------------------------------------------------------------------- /msg/js/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/km.js -------------------------------------------------------------------------------- /msg/js/kn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/kn.js -------------------------------------------------------------------------------- /msg/js/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/ko.js -------------------------------------------------------------------------------- /msg/js/ksh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/ksh.js -------------------------------------------------------------------------------- /msg/js/ku-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/ku-latn.js -------------------------------------------------------------------------------- /msg/js/ky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/ky.js -------------------------------------------------------------------------------- /msg/js/la.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/la.js -------------------------------------------------------------------------------- /msg/js/lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/lb.js -------------------------------------------------------------------------------- /msg/js/lki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/lki.js -------------------------------------------------------------------------------- /msg/js/lo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/lo.js -------------------------------------------------------------------------------- /msg/js/lrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/lrc.js -------------------------------------------------------------------------------- /msg/js/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/lt.js -------------------------------------------------------------------------------- /msg/js/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/lv.js -------------------------------------------------------------------------------- /msg/js/mg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/mg.js -------------------------------------------------------------------------------- /msg/js/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/mk.js -------------------------------------------------------------------------------- /msg/js/ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/ml.js -------------------------------------------------------------------------------- /msg/js/mnw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/mnw.js -------------------------------------------------------------------------------- /msg/js/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/ms.js -------------------------------------------------------------------------------- /msg/js/my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/my.js -------------------------------------------------------------------------------- /msg/js/mzn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/mzn.js -------------------------------------------------------------------------------- /msg/js/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/nb.js -------------------------------------------------------------------------------- /msg/js/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/ne.js -------------------------------------------------------------------------------- /msg/js/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/nl.js -------------------------------------------------------------------------------- /msg/js/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/oc.js -------------------------------------------------------------------------------- /msg/js/olo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/olo.js -------------------------------------------------------------------------------- /msg/js/pa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/pa.js -------------------------------------------------------------------------------- /msg/js/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/pl.js -------------------------------------------------------------------------------- /msg/js/pms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/pms.js -------------------------------------------------------------------------------- /msg/js/ps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/ps.js -------------------------------------------------------------------------------- /msg/js/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/pt-br.js -------------------------------------------------------------------------------- /msg/js/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/pt.js -------------------------------------------------------------------------------- /msg/js/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/ro.js -------------------------------------------------------------------------------- /msg/js/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/ru.js -------------------------------------------------------------------------------- /msg/js/sc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/sc.js -------------------------------------------------------------------------------- /msg/js/sco.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/sco.js -------------------------------------------------------------------------------- /msg/js/sd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/sd.js -------------------------------------------------------------------------------- /msg/js/shn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/shn.js -------------------------------------------------------------------------------- /msg/js/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/si.js -------------------------------------------------------------------------------- /msg/js/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/sk.js -------------------------------------------------------------------------------- /msg/js/skr-arab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/skr-arab.js -------------------------------------------------------------------------------- /msg/js/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/sl.js -------------------------------------------------------------------------------- /msg/js/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/sq.js -------------------------------------------------------------------------------- /msg/js/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/sr-latn.js -------------------------------------------------------------------------------- /msg/js/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/sr.js -------------------------------------------------------------------------------- /msg/js/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/sv.js -------------------------------------------------------------------------------- /msg/js/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/sw.js -------------------------------------------------------------------------------- /msg/js/ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/ta.js -------------------------------------------------------------------------------- /msg/js/tcy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/tcy.js -------------------------------------------------------------------------------- /msg/js/te.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/te.js -------------------------------------------------------------------------------- /msg/js/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/th.js -------------------------------------------------------------------------------- /msg/js/ti.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/ti.js -------------------------------------------------------------------------------- /msg/js/tl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/tl.js -------------------------------------------------------------------------------- /msg/js/tlh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/tlh.js -------------------------------------------------------------------------------- /msg/js/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/tr.js -------------------------------------------------------------------------------- /msg/js/ug-arab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/ug-arab.js -------------------------------------------------------------------------------- /msg/js/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/uk.js -------------------------------------------------------------------------------- /msg/js/ur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/ur.js -------------------------------------------------------------------------------- /msg/js/uz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/uz.js -------------------------------------------------------------------------------- /msg/js/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/vi.js -------------------------------------------------------------------------------- /msg/js/xmf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/xmf.js -------------------------------------------------------------------------------- /msg/js/yo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/yo.js -------------------------------------------------------------------------------- /msg/js/yue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/yue.js -------------------------------------------------------------------------------- /msg/js/zgh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/zgh.js -------------------------------------------------------------------------------- /msg/js/zh-hans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/zh-hans.js -------------------------------------------------------------------------------- /msg/js/zh-hant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/js/zh-hant.js -------------------------------------------------------------------------------- /msg/json/ab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/ab.json -------------------------------------------------------------------------------- /msg/json/ace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/ace.json -------------------------------------------------------------------------------- /msg/json/af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/af.json -------------------------------------------------------------------------------- /msg/json/am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/am.json -------------------------------------------------------------------------------- /msg/json/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/ar.json -------------------------------------------------------------------------------- /msg/json/ast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/ast.json -------------------------------------------------------------------------------- /msg/json/az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/az.json -------------------------------------------------------------------------------- /msg/json/ba.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/ba.json -------------------------------------------------------------------------------- /msg/json/bcc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/bcc.json -------------------------------------------------------------------------------- /msg/json/be-tarask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/be-tarask.json -------------------------------------------------------------------------------- /msg/json/be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/be.json -------------------------------------------------------------------------------- /msg/json/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/bg.json -------------------------------------------------------------------------------- /msg/json/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/bn.json -------------------------------------------------------------------------------- /msg/json/br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/br.json -------------------------------------------------------------------------------- /msg/json/bs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/bs.json -------------------------------------------------------------------------------- /msg/json/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/ca.json -------------------------------------------------------------------------------- /msg/json/cdo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/cdo.json -------------------------------------------------------------------------------- /msg/json/constants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/constants.json -------------------------------------------------------------------------------- /msg/json/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/cs.json -------------------------------------------------------------------------------- /msg/json/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/da.json -------------------------------------------------------------------------------- /msg/json/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/de.json -------------------------------------------------------------------------------- /msg/json/diq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/diq.json -------------------------------------------------------------------------------- /msg/json/dty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/dty.json -------------------------------------------------------------------------------- /msg/json/ee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/ee.json -------------------------------------------------------------------------------- /msg/json/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/el.json -------------------------------------------------------------------------------- /msg/json/en-gb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/en-gb.json -------------------------------------------------------------------------------- /msg/json/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/en.json -------------------------------------------------------------------------------- /msg/json/eo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/eo.json -------------------------------------------------------------------------------- /msg/json/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/es.json -------------------------------------------------------------------------------- /msg/json/et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/et.json -------------------------------------------------------------------------------- /msg/json/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/eu.json -------------------------------------------------------------------------------- /msg/json/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/fa.json -------------------------------------------------------------------------------- /msg/json/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/fi.json -------------------------------------------------------------------------------- /msg/json/fo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/fo.json -------------------------------------------------------------------------------- /msg/json/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/fr.json -------------------------------------------------------------------------------- /msg/json/frr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/frr.json -------------------------------------------------------------------------------- /msg/json/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/gl.json -------------------------------------------------------------------------------- /msg/json/gn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/gn.json -------------------------------------------------------------------------------- /msg/json/gor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/gor.json -------------------------------------------------------------------------------- /msg/json/ha.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/ha.json -------------------------------------------------------------------------------- /msg/json/hak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/hak.json -------------------------------------------------------------------------------- /msg/json/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/he.json -------------------------------------------------------------------------------- /msg/json/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/hi.json -------------------------------------------------------------------------------- /msg/json/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/hr.json -------------------------------------------------------------------------------- /msg/json/hrx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/hrx.json -------------------------------------------------------------------------------- /msg/json/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/hu.json -------------------------------------------------------------------------------- /msg/json/hy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/hy.json -------------------------------------------------------------------------------- /msg/json/ia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/ia.json -------------------------------------------------------------------------------- /msg/json/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/id.json -------------------------------------------------------------------------------- /msg/json/ig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/ig.json -------------------------------------------------------------------------------- /msg/json/inh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/inh.json -------------------------------------------------------------------------------- /msg/json/is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/is.json -------------------------------------------------------------------------------- /msg/json/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/it.json -------------------------------------------------------------------------------- /msg/json/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/ja.json -------------------------------------------------------------------------------- /msg/json/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/ka.json -------------------------------------------------------------------------------- /msg/json/kab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/kab.json -------------------------------------------------------------------------------- /msg/json/kbd-cyrl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/kbd-cyrl.json -------------------------------------------------------------------------------- /msg/json/km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/km.json -------------------------------------------------------------------------------- /msg/json/kn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/kn.json -------------------------------------------------------------------------------- /msg/json/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/ko.json -------------------------------------------------------------------------------- /msg/json/ksh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/ksh.json -------------------------------------------------------------------------------- /msg/json/ku-latn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/ku-latn.json -------------------------------------------------------------------------------- /msg/json/ky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/ky.json -------------------------------------------------------------------------------- /msg/json/la.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/la.json -------------------------------------------------------------------------------- /msg/json/lb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/lb.json -------------------------------------------------------------------------------- /msg/json/lki.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/lki.json -------------------------------------------------------------------------------- /msg/json/lo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/lo.json -------------------------------------------------------------------------------- /msg/json/lrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/lrc.json -------------------------------------------------------------------------------- /msg/json/lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/lt.json -------------------------------------------------------------------------------- /msg/json/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/lv.json -------------------------------------------------------------------------------- /msg/json/mg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/mg.json -------------------------------------------------------------------------------- /msg/json/mk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/mk.json -------------------------------------------------------------------------------- /msg/json/ml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/ml.json -------------------------------------------------------------------------------- /msg/json/mnw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/mnw.json -------------------------------------------------------------------------------- /msg/json/ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/ms.json -------------------------------------------------------------------------------- /msg/json/my.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/my.json -------------------------------------------------------------------------------- /msg/json/mzn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/mzn.json -------------------------------------------------------------------------------- /msg/json/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/nb.json -------------------------------------------------------------------------------- /msg/json/ne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/ne.json -------------------------------------------------------------------------------- /msg/json/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/nl.json -------------------------------------------------------------------------------- /msg/json/oc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/oc.json -------------------------------------------------------------------------------- /msg/json/olo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/olo.json -------------------------------------------------------------------------------- /msg/json/pa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/pa.json -------------------------------------------------------------------------------- /msg/json/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/pl.json -------------------------------------------------------------------------------- /msg/json/pms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/pms.json -------------------------------------------------------------------------------- /msg/json/ps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/ps.json -------------------------------------------------------------------------------- /msg/json/pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/pt-br.json -------------------------------------------------------------------------------- /msg/json/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/pt.json -------------------------------------------------------------------------------- /msg/json/qqq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/qqq.json -------------------------------------------------------------------------------- /msg/json/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/ro.json -------------------------------------------------------------------------------- /msg/json/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/ru.json -------------------------------------------------------------------------------- /msg/json/sc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/sc.json -------------------------------------------------------------------------------- /msg/json/sco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/sco.json -------------------------------------------------------------------------------- /msg/json/sd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/sd.json -------------------------------------------------------------------------------- /msg/json/shn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/shn.json -------------------------------------------------------------------------------- /msg/json/si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/si.json -------------------------------------------------------------------------------- /msg/json/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/sk.json -------------------------------------------------------------------------------- /msg/json/skr-arab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/skr-arab.json -------------------------------------------------------------------------------- /msg/json/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/sl.json -------------------------------------------------------------------------------- /msg/json/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/sq.json -------------------------------------------------------------------------------- /msg/json/sr-latn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/sr-latn.json -------------------------------------------------------------------------------- /msg/json/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/sr.json -------------------------------------------------------------------------------- /msg/json/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/sv.json -------------------------------------------------------------------------------- /msg/json/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/sw.json -------------------------------------------------------------------------------- /msg/json/ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/ta.json -------------------------------------------------------------------------------- /msg/json/tcy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/tcy.json -------------------------------------------------------------------------------- /msg/json/te.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/te.json -------------------------------------------------------------------------------- /msg/json/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/th.json -------------------------------------------------------------------------------- /msg/json/ti.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/ti.json -------------------------------------------------------------------------------- /msg/json/tl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/tl.json -------------------------------------------------------------------------------- /msg/json/tlh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/tlh.json -------------------------------------------------------------------------------- /msg/json/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/tr.json -------------------------------------------------------------------------------- /msg/json/ug-arab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/ug-arab.json -------------------------------------------------------------------------------- /msg/json/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/uk.json -------------------------------------------------------------------------------- /msg/json/ur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/ur.json -------------------------------------------------------------------------------- /msg/json/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/uz.json -------------------------------------------------------------------------------- /msg/json/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/vi.json -------------------------------------------------------------------------------- /msg/json/xmf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/xmf.json -------------------------------------------------------------------------------- /msg/json/yo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/yo.json -------------------------------------------------------------------------------- /msg/json/yue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/yue.json -------------------------------------------------------------------------------- /msg/json/zgh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/zgh.json -------------------------------------------------------------------------------- /msg/json/zh-hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/zh-hans.json -------------------------------------------------------------------------------- /msg/json/zh-hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/json/zh-hant.json -------------------------------------------------------------------------------- /msg/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/msg/messages.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/package.json -------------------------------------------------------------------------------- /php_compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/php_compressed.js -------------------------------------------------------------------------------- /php_compressed.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/php_compressed.js.map -------------------------------------------------------------------------------- /python_compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/python_compressed.js -------------------------------------------------------------------------------- /python_compressed.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/python_compressed.js.map -------------------------------------------------------------------------------- /scripts/gulpfiles/appengine_tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/scripts/gulpfiles/appengine_tasks.js -------------------------------------------------------------------------------- /scripts/gulpfiles/build_tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/scripts/gulpfiles/build_tasks.js -------------------------------------------------------------------------------- /scripts/gulpfiles/cleanup_tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/scripts/gulpfiles/cleanup_tasks.js -------------------------------------------------------------------------------- /scripts/gulpfiles/git_tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/scripts/gulpfiles/git_tasks.js -------------------------------------------------------------------------------- /scripts/gulpfiles/helper_tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/scripts/gulpfiles/helper_tasks.js -------------------------------------------------------------------------------- /scripts/gulpfiles/license_tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/scripts/gulpfiles/license_tasks.js -------------------------------------------------------------------------------- /scripts/gulpfiles/package_tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/scripts/gulpfiles/package_tasks.js -------------------------------------------------------------------------------- /scripts/gulpfiles/pxt_tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/scripts/gulpfiles/pxt_tasks.js -------------------------------------------------------------------------------- /scripts/gulpfiles/release_tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/scripts/gulpfiles/release_tasks.js -------------------------------------------------------------------------------- /scripts/gulpfiles/typings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/scripts/gulpfiles/typings.js -------------------------------------------------------------------------------- /scripts/i18n/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/scripts/i18n/common.py -------------------------------------------------------------------------------- /scripts/i18n/create_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/scripts/i18n/create_messages.py -------------------------------------------------------------------------------- /scripts/i18n/dedup_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/scripts/i18n/dedup_json.py -------------------------------------------------------------------------------- /scripts/i18n/js_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/scripts/i18n/js_to_json.py -------------------------------------------------------------------------------- /scripts/i18n/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/scripts/i18n/tests.py -------------------------------------------------------------------------------- /scripts/package/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/scripts/package/README.md -------------------------------------------------------------------------------- /scripts/package/blockly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/scripts/package/blockly.js -------------------------------------------------------------------------------- /scripts/package/blocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/scripts/package/blocks.js -------------------------------------------------------------------------------- /scripts/package/browser/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/scripts/package/browser/core.js -------------------------------------------------------------------------------- /scripts/package/browser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/scripts/package/browser/index.js -------------------------------------------------------------------------------- /scripts/package/dart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/scripts/package/dart.js -------------------------------------------------------------------------------- /scripts/package/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/scripts/package/index.js -------------------------------------------------------------------------------- /scripts/package/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/scripts/package/javascript.js -------------------------------------------------------------------------------- /scripts/package/lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/scripts/package/lua.js -------------------------------------------------------------------------------- /scripts/package/node/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/scripts/package/node/core.js -------------------------------------------------------------------------------- /scripts/package/node/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/scripts/package/node/index.js -------------------------------------------------------------------------------- /scripts/package/php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/scripts/package/php.js -------------------------------------------------------------------------------- /scripts/package/python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/scripts/package/python.js -------------------------------------------------------------------------------- /scripts/package/templates/node.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/scripts/package/templates/node.template -------------------------------------------------------------------------------- /scripts/package/templates/umd.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/scripts/package/templates/umd.template -------------------------------------------------------------------------------- /scripts/themes/blockStyles_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/scripts/themes/blockStyles_example.json -------------------------------------------------------------------------------- /scripts/themes/create_blockStyles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/scripts/themes/create_blockStyles.py -------------------------------------------------------------------------------- /shim/blockly_compressed.Blockly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/shim/blockly_compressed.Blockly.js -------------------------------------------------------------------------------- /shim/blockly_compressed.goog.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./blockly_compressed').goog; 2 | -------------------------------------------------------------------------------- /shim/blockly_compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/shim/blockly_compressed.js -------------------------------------------------------------------------------- /shim/blocks_compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/shim/blocks_compressed.js -------------------------------------------------------------------------------- /shim/gh-pages.js: -------------------------------------------------------------------------------- 1 | // intentionally left empty -------------------------------------------------------------------------------- /shim/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/shim/index.js -------------------------------------------------------------------------------- /shim/vertical.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/shim/vertical.js -------------------------------------------------------------------------------- /tests/compile/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/compile/index.html -------------------------------------------------------------------------------- /tests/compile/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/compile/main.js -------------------------------------------------------------------------------- /tests/compile/pxt_test_blocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/compile/pxt_test_blocks.js -------------------------------------------------------------------------------- /tests/compile/test_blocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/compile/test_blocks.js -------------------------------------------------------------------------------- /tests/functions_playground.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/functions_playground.html -------------------------------------------------------------------------------- /tests/generators/colour.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/generators/colour.xml -------------------------------------------------------------------------------- /tests/generators/functions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/generators/functions.xml -------------------------------------------------------------------------------- /tests/generators/golden/generated.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/generators/golden/generated.dart -------------------------------------------------------------------------------- /tests/generators/golden/generated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/generators/golden/generated.js -------------------------------------------------------------------------------- /tests/generators/golden/generated.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/generators/golden/generated.lua -------------------------------------------------------------------------------- /tests/generators/golden/generated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/generators/golden/generated.php -------------------------------------------------------------------------------- /tests/generators/golden/generated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/generators/golden/generated.py -------------------------------------------------------------------------------- /tests/generators/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/generators/index.html -------------------------------------------------------------------------------- /tests/generators/lists.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/generators/lists.xml -------------------------------------------------------------------------------- /tests/generators/logic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/generators/logic.xml -------------------------------------------------------------------------------- /tests/generators/loops1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/generators/loops1.xml -------------------------------------------------------------------------------- /tests/generators/loops2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/generators/loops2.xml -------------------------------------------------------------------------------- /tests/generators/loops3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/generators/loops3.xml -------------------------------------------------------------------------------- /tests/generators/math.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/generators/math.xml -------------------------------------------------------------------------------- /tests/generators/text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/generators/text.xml -------------------------------------------------------------------------------- /tests/generators/unittest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/generators/unittest.js -------------------------------------------------------------------------------- /tests/generators/unittest_dart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/generators/unittest_dart.js -------------------------------------------------------------------------------- /tests/generators/unittest_javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/generators/unittest_javascript.js -------------------------------------------------------------------------------- /tests/generators/unittest_lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/generators/unittest_lua.js -------------------------------------------------------------------------------- /tests/generators/unittest_php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/generators/unittest_php.js -------------------------------------------------------------------------------- /tests/generators/unittest_python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/generators/unittest_python.js -------------------------------------------------------------------------------- /tests/generators/variables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/generators/variables.xml -------------------------------------------------------------------------------- /tests/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/iframe.html -------------------------------------------------------------------------------- /tests/jsunit/connection_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/jsunit/connection_test.js -------------------------------------------------------------------------------- /tests/media/200px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/media/200px.png -------------------------------------------------------------------------------- /tests/media/30px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/media/30px.png -------------------------------------------------------------------------------- /tests/media/50px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/media/50px.png -------------------------------------------------------------------------------- /tests/media/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/media/a.png -------------------------------------------------------------------------------- /tests/media/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/media/arrow.png -------------------------------------------------------------------------------- /tests/media/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/media/b.png -------------------------------------------------------------------------------- /tests/media/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/media/c.png -------------------------------------------------------------------------------- /tests/media/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/media/d.png -------------------------------------------------------------------------------- /tests/media/e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/media/e.png -------------------------------------------------------------------------------- /tests/media/f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/media/f.png -------------------------------------------------------------------------------- /tests/media/g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/media/g.png -------------------------------------------------------------------------------- /tests/media/h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/media/h.png -------------------------------------------------------------------------------- /tests/media/i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/media/i.png -------------------------------------------------------------------------------- /tests/media/j.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/media/j.png -------------------------------------------------------------------------------- /tests/media/k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/media/k.png -------------------------------------------------------------------------------- /tests/media/l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/media/l.png -------------------------------------------------------------------------------- /tests/media/m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/media/m.png -------------------------------------------------------------------------------- /tests/mocha/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/.eslintrc.json -------------------------------------------------------------------------------- /tests/mocha/.mocharc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/.mocharc.js -------------------------------------------------------------------------------- /tests/mocha/astnode_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/astnode_test.js -------------------------------------------------------------------------------- /tests/mocha/block_json_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/block_json_test.js -------------------------------------------------------------------------------- /tests/mocha/block_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/block_test.js -------------------------------------------------------------------------------- /tests/mocha/comment_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/comment_test.js -------------------------------------------------------------------------------- /tests/mocha/connection_checker_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/connection_checker_test.js -------------------------------------------------------------------------------- /tests/mocha/connection_db_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/connection_db_test.js -------------------------------------------------------------------------------- /tests/mocha/connection_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/connection_test.js -------------------------------------------------------------------------------- /tests/mocha/contextmenu_items_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/contextmenu_items_test.js -------------------------------------------------------------------------------- /tests/mocha/cursor_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/cursor_test.js -------------------------------------------------------------------------------- /tests/mocha/dropdowndiv_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/dropdowndiv_test.js -------------------------------------------------------------------------------- /tests/mocha/event_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/event_test.js -------------------------------------------------------------------------------- /tests/mocha/extensions_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/extensions_test.js -------------------------------------------------------------------------------- /tests/mocha/field_angle_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/field_angle_test.js -------------------------------------------------------------------------------- /tests/mocha/field_checkbox_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/field_checkbox_test.js -------------------------------------------------------------------------------- /tests/mocha/field_colour_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/field_colour_test.js -------------------------------------------------------------------------------- /tests/mocha/field_dropdown_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/field_dropdown_test.js -------------------------------------------------------------------------------- /tests/mocha/field_image_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/field_image_test.js -------------------------------------------------------------------------------- /tests/mocha/field_label_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/field_label_test.js -------------------------------------------------------------------------------- /tests/mocha/field_multilineinput_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/field_multilineinput_test.js -------------------------------------------------------------------------------- /tests/mocha/field_number_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/field_number_test.js -------------------------------------------------------------------------------- /tests/mocha/field_registry_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/field_registry_test.js -------------------------------------------------------------------------------- /tests/mocha/field_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/field_test.js -------------------------------------------------------------------------------- /tests/mocha/field_textinput_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/field_textinput_test.js -------------------------------------------------------------------------------- /tests/mocha/field_variable_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/field_variable_test.js -------------------------------------------------------------------------------- /tests/mocha/flyout_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/flyout_test.js -------------------------------------------------------------------------------- /tests/mocha/generator_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/generator_test.js -------------------------------------------------------------------------------- /tests/mocha/gesture_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/gesture_test.js -------------------------------------------------------------------------------- /tests/mocha/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/index.html -------------------------------------------------------------------------------- /tests/mocha/input_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/input_test.js -------------------------------------------------------------------------------- /tests/mocha/insertion_marker_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/insertion_marker_test.js -------------------------------------------------------------------------------- /tests/mocha/json_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/json_test.js -------------------------------------------------------------------------------- /tests/mocha/keydown_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/keydown_test.js -------------------------------------------------------------------------------- /tests/mocha/logic_ternary_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/logic_ternary_test.js -------------------------------------------------------------------------------- /tests/mocha/metrics_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/metrics_test.js -------------------------------------------------------------------------------- /tests/mocha/names_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/names_test.js -------------------------------------------------------------------------------- /tests/mocha/procedures_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/procedures_test.js -------------------------------------------------------------------------------- /tests/mocha/procedures_test_helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/procedures_test_helpers.js -------------------------------------------------------------------------------- /tests/mocha/registry_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/registry_test.js -------------------------------------------------------------------------------- /tests/mocha/shortcut_registry_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/shortcut_registry_test.js -------------------------------------------------------------------------------- /tests/mocha/test_helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/test_helpers.js -------------------------------------------------------------------------------- /tests/mocha/theme_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/theme_test.js -------------------------------------------------------------------------------- /tests/mocha/toolbox_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/toolbox_helper.js -------------------------------------------------------------------------------- /tests/mocha/toolbox_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/toolbox_test.js -------------------------------------------------------------------------------- /tests/mocha/tooltip_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/tooltip_test.js -------------------------------------------------------------------------------- /tests/mocha/trashcan_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/trashcan_test.js -------------------------------------------------------------------------------- /tests/mocha/utils_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/utils_test.js -------------------------------------------------------------------------------- /tests/mocha/variable_map_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/variable_map_test.js -------------------------------------------------------------------------------- /tests/mocha/variable_model_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/variable_model_test.js -------------------------------------------------------------------------------- /tests/mocha/variables_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/variables_test.js -------------------------------------------------------------------------------- /tests/mocha/widget_div_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/widget_div_test.js -------------------------------------------------------------------------------- /tests/mocha/workspace_comment_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/workspace_comment_test.js -------------------------------------------------------------------------------- /tests/mocha/workspace_svg_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/workspace_svg_test.js -------------------------------------------------------------------------------- /tests/mocha/workspace_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/workspace_test.js -------------------------------------------------------------------------------- /tests/mocha/xml_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/xml_test.js -------------------------------------------------------------------------------- /tests/mocha/zoom_controls_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/mocha/zoom_controls_test.js -------------------------------------------------------------------------------- /tests/multi_playground.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/multi_playground.html -------------------------------------------------------------------------------- /tests/node/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/node/.eslintrc.json -------------------------------------------------------------------------------- /tests/node/.mocharc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/node/.mocharc.js -------------------------------------------------------------------------------- /tests/node/run_node_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/node/run_node_test.js -------------------------------------------------------------------------------- /tests/playground.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/playground.html -------------------------------------------------------------------------------- /tests/playgrounds/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/playgrounds/iframe.html -------------------------------------------------------------------------------- /tests/playgrounds/screenshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/playgrounds/screenshot.js -------------------------------------------------------------------------------- /tests/rendering/svg_paths.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/rendering/svg_paths.html -------------------------------------------------------------------------------- /tests/rendering/zelos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/rendering/zelos/README.md -------------------------------------------------------------------------------- /tests/rendering/zelos/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/rendering/zelos/index.html -------------------------------------------------------------------------------- /tests/rendering/zelos/pxtblockly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/rendering/zelos/pxtblockly.html -------------------------------------------------------------------------------- /tests/rendering/zelos/zelos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/rendering/zelos/zelos.html -------------------------------------------------------------------------------- /tests/run_all_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/run_all_tests.sh -------------------------------------------------------------------------------- /tests/scripts/check_metadata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/scripts/check_metadata.sh -------------------------------------------------------------------------------- /tests/scripts/compile_typings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/scripts/compile_typings.sh -------------------------------------------------------------------------------- /tests/scripts/get_chromedriver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/scripts/get_chromedriver.sh -------------------------------------------------------------------------------- /tests/scripts/run_generators.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/scripts/run_generators.sh -------------------------------------------------------------------------------- /tests/scripts/selenium-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/scripts/selenium-config.js -------------------------------------------------------------------------------- /tests/scripts/setup_linux_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/scripts/setup_linux_env.sh -------------------------------------------------------------------------------- /tests/scripts/setup_osx_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/scripts/setup_osx_env.sh -------------------------------------------------------------------------------- /tests/themes/test_themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/themes/test_themes.js -------------------------------------------------------------------------------- /tests/xml/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/xml/README.txt -------------------------------------------------------------------------------- /tests/xml/blockly.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/xml/blockly.xsd -------------------------------------------------------------------------------- /tests/xml/invalid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/xml/invalid.xml -------------------------------------------------------------------------------- /tests/xml/toolbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/xml/toolbox.xml -------------------------------------------------------------------------------- /tests/xml/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/tests/xml/workspace.xml -------------------------------------------------------------------------------- /typings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/README.md -------------------------------------------------------------------------------- /typings/blockly.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/blockly.d.ts -------------------------------------------------------------------------------- /typings/blocks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/blocks.d.ts -------------------------------------------------------------------------------- /typings/core.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/core.d.ts -------------------------------------------------------------------------------- /typings/dart.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/dart.d.ts -------------------------------------------------------------------------------- /typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/index.d.ts -------------------------------------------------------------------------------- /typings/javascript.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/javascript.d.ts -------------------------------------------------------------------------------- /typings/lua.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/lua.d.ts -------------------------------------------------------------------------------- /typings/msg/ab.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/ab.d.ts -------------------------------------------------------------------------------- /typings/msg/ace.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/ace.d.ts -------------------------------------------------------------------------------- /typings/msg/af.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/af.d.ts -------------------------------------------------------------------------------- /typings/msg/am.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/am.d.ts -------------------------------------------------------------------------------- /typings/msg/ar.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/ar.d.ts -------------------------------------------------------------------------------- /typings/msg/ast.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/ast.d.ts -------------------------------------------------------------------------------- /typings/msg/az.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/az.d.ts -------------------------------------------------------------------------------- /typings/msg/ba.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/ba.d.ts -------------------------------------------------------------------------------- /typings/msg/bcc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/bcc.d.ts -------------------------------------------------------------------------------- /typings/msg/be-tarask.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/be-tarask.d.ts -------------------------------------------------------------------------------- /typings/msg/be.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/be.d.ts -------------------------------------------------------------------------------- /typings/msg/bg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/bg.d.ts -------------------------------------------------------------------------------- /typings/msg/bn.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/bn.d.ts -------------------------------------------------------------------------------- /typings/msg/br.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/br.d.ts -------------------------------------------------------------------------------- /typings/msg/bs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/bs.d.ts -------------------------------------------------------------------------------- /typings/msg/ca.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/ca.d.ts -------------------------------------------------------------------------------- /typings/msg/cdo.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/cdo.d.ts -------------------------------------------------------------------------------- /typings/msg/constants.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/constants.d.ts -------------------------------------------------------------------------------- /typings/msg/cs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/cs.d.ts -------------------------------------------------------------------------------- /typings/msg/da.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/da.d.ts -------------------------------------------------------------------------------- /typings/msg/de.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/de.d.ts -------------------------------------------------------------------------------- /typings/msg/diq.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/diq.d.ts -------------------------------------------------------------------------------- /typings/msg/dty.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/dty.d.ts -------------------------------------------------------------------------------- /typings/msg/ee.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/ee.d.ts -------------------------------------------------------------------------------- /typings/msg/el.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/el.d.ts -------------------------------------------------------------------------------- /typings/msg/en-gb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/en-gb.d.ts -------------------------------------------------------------------------------- /typings/msg/en.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/en.d.ts -------------------------------------------------------------------------------- /typings/msg/eo.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/eo.d.ts -------------------------------------------------------------------------------- /typings/msg/es.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/es.d.ts -------------------------------------------------------------------------------- /typings/msg/et.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/et.d.ts -------------------------------------------------------------------------------- /typings/msg/eu.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/eu.d.ts -------------------------------------------------------------------------------- /typings/msg/fa.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/fa.d.ts -------------------------------------------------------------------------------- /typings/msg/fi.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/fi.d.ts -------------------------------------------------------------------------------- /typings/msg/fo.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/fo.d.ts -------------------------------------------------------------------------------- /typings/msg/fr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/fr.d.ts -------------------------------------------------------------------------------- /typings/msg/frr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/frr.d.ts -------------------------------------------------------------------------------- /typings/msg/gl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/gl.d.ts -------------------------------------------------------------------------------- /typings/msg/gn.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/gn.d.ts -------------------------------------------------------------------------------- /typings/msg/gor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/gor.d.ts -------------------------------------------------------------------------------- /typings/msg/ha.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/ha.d.ts -------------------------------------------------------------------------------- /typings/msg/hak.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/hak.d.ts -------------------------------------------------------------------------------- /typings/msg/he.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/he.d.ts -------------------------------------------------------------------------------- /typings/msg/hi.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/hi.d.ts -------------------------------------------------------------------------------- /typings/msg/hr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/hr.d.ts -------------------------------------------------------------------------------- /typings/msg/hrx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/hrx.d.ts -------------------------------------------------------------------------------- /typings/msg/hu.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/hu.d.ts -------------------------------------------------------------------------------- /typings/msg/hy.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/hy.d.ts -------------------------------------------------------------------------------- /typings/msg/ia.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/ia.d.ts -------------------------------------------------------------------------------- /typings/msg/id.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/id.d.ts -------------------------------------------------------------------------------- /typings/msg/ig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/ig.d.ts -------------------------------------------------------------------------------- /typings/msg/inh.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/inh.d.ts -------------------------------------------------------------------------------- /typings/msg/is.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/is.d.ts -------------------------------------------------------------------------------- /typings/msg/it.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/it.d.ts -------------------------------------------------------------------------------- /typings/msg/ja.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/ja.d.ts -------------------------------------------------------------------------------- /typings/msg/ka.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/ka.d.ts -------------------------------------------------------------------------------- /typings/msg/kab.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/kab.d.ts -------------------------------------------------------------------------------- /typings/msg/kbd-cyrl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/kbd-cyrl.d.ts -------------------------------------------------------------------------------- /typings/msg/km.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/km.d.ts -------------------------------------------------------------------------------- /typings/msg/kn.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/kn.d.ts -------------------------------------------------------------------------------- /typings/msg/ko.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/ko.d.ts -------------------------------------------------------------------------------- /typings/msg/ksh.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/ksh.d.ts -------------------------------------------------------------------------------- /typings/msg/ku-latn.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/ku-latn.d.ts -------------------------------------------------------------------------------- /typings/msg/ky.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/ky.d.ts -------------------------------------------------------------------------------- /typings/msg/la.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/la.d.ts -------------------------------------------------------------------------------- /typings/msg/lb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/lb.d.ts -------------------------------------------------------------------------------- /typings/msg/lki.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/lki.d.ts -------------------------------------------------------------------------------- /typings/msg/lo.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/lo.d.ts -------------------------------------------------------------------------------- /typings/msg/lrc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/lrc.d.ts -------------------------------------------------------------------------------- /typings/msg/lt.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/lt.d.ts -------------------------------------------------------------------------------- /typings/msg/lv.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/lv.d.ts -------------------------------------------------------------------------------- /typings/msg/mg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/mg.d.ts -------------------------------------------------------------------------------- /typings/msg/mk.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/mk.d.ts -------------------------------------------------------------------------------- /typings/msg/ml.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/ml.d.ts -------------------------------------------------------------------------------- /typings/msg/mnw.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/mnw.d.ts -------------------------------------------------------------------------------- /typings/msg/ms.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/ms.d.ts -------------------------------------------------------------------------------- /typings/msg/my.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/my.d.ts -------------------------------------------------------------------------------- /typings/msg/mzn.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/mzn.d.ts -------------------------------------------------------------------------------- /typings/msg/nb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/nb.d.ts -------------------------------------------------------------------------------- /typings/msg/ne.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/ne.d.ts -------------------------------------------------------------------------------- /typings/msg/nl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/nl.d.ts -------------------------------------------------------------------------------- /typings/msg/oc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/oc.d.ts -------------------------------------------------------------------------------- /typings/msg/olo.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/olo.d.ts -------------------------------------------------------------------------------- /typings/msg/pa.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/pa.d.ts -------------------------------------------------------------------------------- /typings/msg/pl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/pl.d.ts -------------------------------------------------------------------------------- /typings/msg/pms.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/pms.d.ts -------------------------------------------------------------------------------- /typings/msg/ps.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/ps.d.ts -------------------------------------------------------------------------------- /typings/msg/pt-br.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/pt-br.d.ts -------------------------------------------------------------------------------- /typings/msg/pt.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/pt.d.ts -------------------------------------------------------------------------------- /typings/msg/qqq.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/qqq.d.ts -------------------------------------------------------------------------------- /typings/msg/ro.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/ro.d.ts -------------------------------------------------------------------------------- /typings/msg/ru.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/ru.d.ts -------------------------------------------------------------------------------- /typings/msg/sc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/sc.d.ts -------------------------------------------------------------------------------- /typings/msg/sco.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/sco.d.ts -------------------------------------------------------------------------------- /typings/msg/sd.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/sd.d.ts -------------------------------------------------------------------------------- /typings/msg/shn.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/shn.d.ts -------------------------------------------------------------------------------- /typings/msg/si.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/si.d.ts -------------------------------------------------------------------------------- /typings/msg/sk.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/sk.d.ts -------------------------------------------------------------------------------- /typings/msg/skr-arab.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/skr-arab.d.ts -------------------------------------------------------------------------------- /typings/msg/sl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/sl.d.ts -------------------------------------------------------------------------------- /typings/msg/sq.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/sq.d.ts -------------------------------------------------------------------------------- /typings/msg/sr-latn.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/sr-latn.d.ts -------------------------------------------------------------------------------- /typings/msg/sr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/sr.d.ts -------------------------------------------------------------------------------- /typings/msg/sv.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/sv.d.ts -------------------------------------------------------------------------------- /typings/msg/sw.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/sw.d.ts -------------------------------------------------------------------------------- /typings/msg/synonyms.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/synonyms.d.ts -------------------------------------------------------------------------------- /typings/msg/ta.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/ta.d.ts -------------------------------------------------------------------------------- /typings/msg/tcy.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/tcy.d.ts -------------------------------------------------------------------------------- /typings/msg/te.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/te.d.ts -------------------------------------------------------------------------------- /typings/msg/th.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/th.d.ts -------------------------------------------------------------------------------- /typings/msg/ti.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/ti.d.ts -------------------------------------------------------------------------------- /typings/msg/tl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/tl.d.ts -------------------------------------------------------------------------------- /typings/msg/tlh.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/tlh.d.ts -------------------------------------------------------------------------------- /typings/msg/tr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/tr.d.ts -------------------------------------------------------------------------------- /typings/msg/ug-arab.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/ug-arab.d.ts -------------------------------------------------------------------------------- /typings/msg/uk.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/uk.d.ts -------------------------------------------------------------------------------- /typings/msg/ur.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/ur.d.ts -------------------------------------------------------------------------------- /typings/msg/uz.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/uz.d.ts -------------------------------------------------------------------------------- /typings/msg/vi.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/vi.d.ts -------------------------------------------------------------------------------- /typings/msg/xmf.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/xmf.d.ts -------------------------------------------------------------------------------- /typings/msg/yo.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/yo.d.ts -------------------------------------------------------------------------------- /typings/msg/yue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/yue.d.ts -------------------------------------------------------------------------------- /typings/msg/zgh.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/zgh.d.ts -------------------------------------------------------------------------------- /typings/msg/zh-hans.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/zh-hans.d.ts -------------------------------------------------------------------------------- /typings/msg/zh-hant.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/msg/zh-hant.d.ts -------------------------------------------------------------------------------- /typings/php.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/php.d.ts -------------------------------------------------------------------------------- /typings/python.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/python.d.ts -------------------------------------------------------------------------------- /typings/templates/msg.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/templates/msg.template -------------------------------------------------------------------------------- /typings/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/typings/tsconfig.json -------------------------------------------------------------------------------- /vivian-build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/vivian-build.ps1 -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pxt-blockly/HEAD/webpack.config.js --------------------------------------------------------------------------------