From 261040a6fd4f91defd270766764eb1272f318654 Mon Sep 17 00:00:00 2001 From: Rachel Fenichel Date: Thu, 5 Sep 2019 16:19:51 -0700 Subject: [PATCH] Add jsdoc --- core/renderers/geras/highlighter.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/core/renderers/geras/highlighter.js b/core/renderers/geras/highlighter.js index 8fd0e125f..3b00dad1c 100644 --- a/core/renderers/geras/highlighter.js +++ b/core/renderers/geras/highlighter.js @@ -79,10 +79,20 @@ Blockly.geras.Highlighter = function(info) { this.highlightConstants_.JAGGED_TEETH; }; +/** + * Get the steps for the main highlight path. + * @return {string} The steps for the main highlight path. + * @package + */ Blockly.geras.Highlighter.prototype.getSteps = function() { return this.steps_; }; +/** + * Get the steps for the inline highlight path. + * @return {string} The steps for the inline highlight path. + * @package + */ Blockly.geras.Highlighter.prototype.getInlineSteps = function() { return this.inlineSteps_; };