Add missing requireTypes to zelos

This commit is contained in:
Rachel Fenichel
2021-01-28 17:17:50 -08:00
parent 9ce06fb7d3
commit 3c43738999
6 changed files with 21 additions and 0 deletions

View File

@@ -16,6 +16,12 @@ goog.require('Blockly.blockRendering.MarkerSvg');
goog.require('Blockly.utils.dom');
goog.require('Blockly.utils.Svg');
goog.requireType('Blockly.blockRendering.ConstantProvider');
goog.requireType('Blockly.BlockSvg');
goog.requireType('Blockly.Connection');
goog.requireType('Blockly.Marker');
goog.requireType('Blockly.WorkspaceSvg');
/**
* Class to draw a marker.

View File

@@ -15,6 +15,9 @@ goog.provide('Blockly.zelos.StatementInput');
goog.require('Blockly.blockRendering.StatementInput');
goog.require('Blockly.utils.object');
goog.requireType('Blockly.blockRendering.ConstantProvider');
goog.requireType('Blockly.Input');
/**
* An object containing information about the space a statement input takes up

View File

@@ -16,6 +16,8 @@ goog.require('Blockly.blockRendering.Measurable');
goog.require('Blockly.blockRendering.Types');
goog.require('Blockly.utils.object');
goog.requireType('Blockly.blockRendering.ConstantProvider');
/**
* An object containing information about the space a right connection shape

View File

@@ -19,6 +19,8 @@ goog.require('Blockly.blockRendering.TopRow');
goog.require('Blockly.blockRendering.SpacerRow');
goog.require('Blockly.utils.object');
goog.requireType('Blockly.blockRendering.ConstantProvider');
/**
* An object containing information about what elements are in the top row of a

View File

@@ -19,6 +19,8 @@ goog.require('Blockly.utils.dom');
goog.require('Blockly.utils.object');
goog.require('Blockly.utils.Svg');
goog.requireType('Blockly.Theme');
/**
* An object that handles creating and setting each of the SVG elements

View File

@@ -23,6 +23,12 @@ goog.require('Blockly.zelos.PathObject');
goog.require('Blockly.zelos.RenderInfo');
goog.require('Blockly.zelos.MarkerSvg');
goog.requireType('Blockly.blockRendering.MarkerSvg');
goog.requireType('Blockly.blockRendering.RenderInfo');
goog.requireType('Blockly.BlockSvg');
goog.requireType('Blockly.Marker');
goog.requireType('Blockly.WorkspaceSvg');
/**
* The zelos renderer.