mirror of
https://github.com/google/blockly.git
synced 2026-01-08 09:30:06 +01:00
* Add annotations to files under core/events * Add annotations to files under core/interfaces * Add annotations to files under core/keyboard_nav * Add annotations to files under core/renderers * Add annotations to files under core/serialization * Add annotations to files under core/theme * Add annotations to files under core/toolbox * Add annotations to files under core/utils * Add annotations to files under core
28 lines
562 B
JavaScript
28 lines
562 B
JavaScript
/**
|
|
* @license
|
|
* Copyright 2013 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview A mapping of block type names to block prototype objects.
|
|
* @author spertus@google.com (Ellen Spertus)
|
|
*/
|
|
'use strict';
|
|
|
|
/**
|
|
* A mapping of block type names to block prototype objects.
|
|
* @namespace Blockly.blocks
|
|
*/
|
|
goog.module('Blockly.blocks');
|
|
|
|
|
|
/**
|
|
* A mapping of block type names to block prototype objects.
|
|
* @type {!Object<string,!Object>}
|
|
* @alias Blockly.blocks.Blocks
|
|
*/
|
|
const Blocks = Object.create(null);
|
|
|
|
exports.Blocks = Blocks;
|