Skip to content

Instantly share code, notes, and snippets.

@tonussi
Created November 8, 2014 14:00
Show Gist options
  • Save tonussi/ff1fbc7c0e9dcc1079f5 to your computer and use it in GitHub Desktop.
Save tonussi/ff1fbc7c0e9dcc1079f5 to your computer and use it in GitHub Desktop.
captura.js
captura_simbolos: function () {
var simbolos = [];
for (var i = 0; i < this.transicoes.length; i++) {
var tr = this.transicoes[i];
for (var j = tr.lb; j < tr.ub; j++) {
simbolos.push(j);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment