mirror of
https://github.com/google/blockly.git
synced 2026-01-13 20:07:08 +01:00
24 lines
612 B
JavaScript
24 lines
612 B
JavaScript
/**
|
|
* @license
|
|
* Copyright 2021 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview All the blocks. (Entry point for blocks_compressed.js.)
|
|
* @suppress {extraRequire}
|
|
*/
|
|
'use strict';
|
|
|
|
goog.module('Blockly.blocks.all');
|
|
|
|
goog.require('Blockly.blocks.colour');
|
|
goog.require('Blockly.blocks.lists');
|
|
goog.require('Blockly.blocks.logic');
|
|
goog.require('Blockly.blocks.loops');
|
|
goog.require('Blockly.blocks.math');
|
|
goog.require('Blockly.blocks.procedures');
|
|
goog.require('Blockly.blocks.texts');
|
|
goog.require('Blockly.blocks.variables');
|
|
goog.require('Blockly.blocks.variablesDynamic');
|