blockly
Version:
Blockly is a library for building visual programming editors.
42 lines (35 loc) • 1.09 kB
JavaScript
/**
* @license
* Copyright 2019 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @fileoverview Minimalist rendering drawer.
*/
;
/**
* Minimalist rendering drawer.
* @class
*/
goog.module('Blockly.minimalist.Drawer');
const object = goog.require('Blockly.utils.object');
/* eslint-disable-next-line no-unused-vars */
const {BlockSvg} = goog.requireType('Blockly.BlockSvg');
const {Drawer: BaseDrawer} = goog.require('Blockly.blockRendering.Drawer');
/* eslint-disable-next-line no-unused-vars */
const {RenderInfo} = goog.requireType('Blockly.minimalist.RenderInfo');
/**
* An object that draws a block based on the given rendering information.
* @param {!BlockSvg} block The block to render.
* @param {!RenderInfo} info An object containing all
* information needed to render this block.
* @package
* @constructor
* @extends {BaseDrawer}
* @alias Blockly.minimalist.Drawer
*/
const Drawer = function(block, info) {
Drawer.superClass_.constructor.call(this, block, info);
};
object.inherits(Drawer, BaseDrawer);
exports.Drawer = Drawer;