clang-format core/renderers/zelos/measurables/inputs.js

This commit is contained in:
kozbial
2021-08-17 11:46:10 -07:00
committed by Monica Kozbial
parent a6271bb3d5
commit 810e1e19a5

View File

@@ -33,8 +33,7 @@ const object = goog.require('Blockly.utils.object');
* @extends {BaseStatementInput}
*/
const StatementInput = function(constants, input) {
StatementInput.superClass_.constructor.call(this,
constants, input);
StatementInput.superClass_.constructor.call(this, constants, input);
if (this.connectedBlock) {
// Find the bottom-most connected block in the stack.
@@ -48,7 +47,6 @@ const StatementInput = function(constants, input) {
}
}
};
object.inherits(StatementInput,
BaseStatementInput);
object.inherits(StatementInput, BaseStatementInput);
exports = StatementInput;