You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think it may be better to have some kind of navigation inside the blocks. Typically I can create a sub block in a JBlock, why not also be able to go back ?
a call would be ( assuming bl is the current block)
bl._if(a) // create a if and go in the then block
._for(integer, "i", lit(0)) // create a for
.test(fr->fr.var("i").lt(a0)) // make the <0
.update() // and go in the for block with a new variable
.up() // return in the then
.elseBlock()
._while(cm.true);
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
I think it may be better to have some kind of navigation inside the blocks. Typically I can create a sub block in a JBlock, why not also be able to go back ?
Here is an example : to represent
a call would be ( assuming bl is the current block)
I started working on this in the branch https://github.com/guiguilechat/jcodemodel/tree/blockrework
The text was updated successfully, but these errors were encountered: