Explorar el Código

Tokenizer now accepts ':' as a 'punc' token.

master
Bryan Miller hace 5 años
padre
commit
221d15755a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/assembler/tokenizer.js

+ 1
- 1
src/assembler/tokenizer.js Ver fichero

@@ -83,7 +83,7 @@ function isLabel(c){
}

function isPunctuation(c){
return (",()".indexOf(c) >= 0);
return (",():".indexOf(c) >= 0);
}

function isOp(c){

Cargando…
Cancelar
Guardar