Browse Source

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

master
Bryan Miller 5 years ago
parent
commit
221d15755a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/assembler/tokenizer.js

+ 1
- 1
src/assembler/tokenizer.js View File

} }


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


function isOp(c){ function isOp(c){

Loading…
Cancel
Save