gobstones-blockly 0.10.1 → 0.10.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/htmls/gs-element-blockly.html +2 -2
- data/lib/gobstones/blockly/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0ebce783ae4675bbd362ac7d928a6c40f7ebc9c88223d28d3fcf689f1ee4c6db
|
|
4
|
+
data.tar.gz: faf279d8bfc0fcce6b5a7fabec0868c83c01f48896eba524bcabc1e3b6cf15f9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 61820ef1e45b0b254c22de25d80529c487f13f89a262d4daf3a74a271222ee5651f816492c443770d086064be68523ad16a7996967754d08255be98425781ebc
|
|
7
|
+
data.tar.gz: 37b0a44b638303c22133d6f66b68e4b0327daa0cc09f0a8eaa350c832d49c1753ebb04a22d8f42f240bc1faac379198e799993251fe842f24dc07ef0944f48af
|
|
@@ -4998,14 +4998,14 @@ function callGenerator(name, args = [], newLine, order) {
|
|
|
4998
4998
|
/**
|
|
4999
4999
|
* Retorna la funcion que genera el codigo para un bloque tipo PROC(arg1, arg2, ...)
|
|
5000
5000
|
*/
|
|
5001
|
-
function
|
|
5001
|
+
window.procBlockCodeGenerator = function(procName, args) {
|
|
5002
5002
|
return callGenerator(procName, args, true);
|
|
5003
5003
|
}
|
|
5004
5004
|
|
|
5005
5005
|
/**
|
|
5006
5006
|
* Retorna la funcion que genera el codigo para un bloque tipo function(arg1, arg2, ...)
|
|
5007
5007
|
*/
|
|
5008
|
-
function
|
|
5008
|
+
window.functionBlockCodeGenerator = function(procName, args) {
|
|
5009
5009
|
return callGenerator(procName, args, false, Blockly.GobstonesLanguage.ORDER_FUNCTION_CALL);
|
|
5010
5010
|
}
|
|
5011
5011
|
|