Przeglądaj źródła

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

master
Bryan Miller 5 lat temu
rodzic
commit
221d15755a
1 zmienionych plików z 1 dodań i 1 usunięć
  1. +1
    -1
      src/assembler/tokenizer.js

+ 1
- 1
src/assembler/tokenizer.js Wyświetl plik

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

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

function isOp(c){

Ładowanie…
Anuluj
Zapisz