Skip to content

Commit

Permalink
Merge pull request #5019 from cpcallen/goog.module-prep
Browse files Browse the repository at this point in the history
Preparation for goog.module transition: base.js, deps.js
  • Loading branch information
cpcallen authored Jul 13, 2021
2 parents de1b321 + d313ec8 commit 8b81043
Show file tree
Hide file tree
Showing 12 changed files with 3,872 additions and 559 deletions.
1 change: 0 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
*_compressed*.js
*_uncompressed*.js
gulpfile.js
/msg/*
/build/*
Expand Down
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@
},
"globals": {
"Blockly": true,
"goog": true
"goog": true,
"exports": true
},
"extends": [
"eslint:recommended"
Expand Down
271 changes: 43 additions & 228 deletions blockly_uncompressed.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions blocks/procedures.js
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ Blockly.Blocks['procedures_mutatorarg'] = {
* @param {string} varName User-supplied name.
* @return {?string} Valid name, or null if a name was not specified.
* @private
* @this Blockly.FieldTextInput
* @this {Blockly.FieldTextInput}
*/
validator_: function(varName) {
var sourceBlock = this.getSourceBlock();
Expand Down Expand Up @@ -571,7 +571,7 @@ Blockly.Blocks['procedures_mutatorarg'] = {
* variable name.
* @param {string} newText The new variable name.
* @private
* @this Blockly.FieldTextInput
* @this {Blockly.FieldTextInput}
*/
deleteIntermediateVars_: function(newText) {
var outerWs = Blockly.Mutator.findParentWs(this.getSourceBlock().workspace);
Expand Down
Loading

0 comments on commit 8b81043

Please sign in to comment.