Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
ObsidianBlk
/
F8
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Pull Requests
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
Tokenizer now accepts ':' as a 'punc' token.
master
Bryan Miller
hace 5 años
padre
ba2545fe64
commit
221d15755a
Se han
modificado 1 ficheros
con
1 adiciones
y
1 borrados
Dividir vista
Mostrar estadísticas de diff
+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){
Escribir
Vista previa
Cargando…
Cancelar
Guardar