This website works better with JavaScript.
Home
Explore
Help
Sign In
ObsidianBlk
/
F8
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Tokenizer now accepts ':' as a 'punc' token.
master
Bryan Miller
5 years ago
parent
ba2545fe64
commit
221d15755a
1 changed files
with
1 additions
and
1 deletions
Split View
Show Diff Stats
+1
-1
src/assembler/tokenizer.js
+ 1
- 1
src/assembler/tokenizer.js
View File
@@ -83,7 +83,7 @@ function isLabel(c){
}
function isPunctuation(c){
return (",()".indexOf(c) >= 0);
return (",()
:
".indexOf(c) >= 0);
}
function isOp(c){
Write
Preview
Loading…
Cancel
Save