gobstones-blockly 0.10.2 → 0.10.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/htmls/gs-element-blockly.html +4 -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: 3a85dadb56aeedaf4405884ad24dedc8145d62b9665be27b3bb0bc6518010a06
|
4
|
+
data.tar.gz: ba06f79a4e592c519a01813a56f04ac2cb4a6f672feef76913a069481245f3ea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef4884a64413fac463154ebeacccca243373dbe74e1f9ff47e6bcdb31c27fe26e617c60e2ed6701274cc7916dcb2dee3532d0c028ce751b6b2419df932c4571d
|
7
|
+
data.tar.gz: 4a3366db0bff260ab3fd41946033dae0847a766c16460bd32892eb0d577ace4957211d8f5eb49ee14a7deb0bad783420773daee51d24acd2bec22cf4a064f203
|
@@ -4998,16 +4998,18 @@ 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
|
-
|
5001
|
+
function procBlockCodeGenerator(procName, args) {
|
5002
5002
|
return callGenerator(procName, args, true);
|
5003
5003
|
}
|
5004
|
+
window.procBlockCodeGenerator = procBlockCodeGenerator;
|
5004
5005
|
|
5005
5006
|
/**
|
5006
5007
|
* Retorna la funcion que genera el codigo para un bloque tipo function(arg1, arg2, ...)
|
5007
5008
|
*/
|
5008
|
-
|
5009
|
+
function functionBlockCodeGenerator(procName, args) {
|
5009
5010
|
return callGenerator(procName, args, false, Blockly.GobstonesLanguage.ORDER_FUNCTION_CALL);
|
5010
5011
|
}
|
5012
|
+
window.functionBlockCodeGenerator = functionBlockCodeGenerator;
|
5011
5013
|
|
5012
5014
|
/**
|
5013
5015
|
* Retorna la funcion que genera el codigo para un bloque tipo Expr(arg1, arg2, ...)
|