Added a hack to break on expression terminators (colon comma,

semicolon).
This commit is contained in:
Robert Greene 2003-06-01 19:46:59 +00:00
parent 1e96c1e867
commit a75acf0e66
1 changed files with 3 additions and 1 deletions

View File

@ -123,7 +123,9 @@ public class ApplesoftTokenizer {
string.append(ch);
}
byt = fileData[offset];
if ((byt & 0x80) != 0 || byt == 0) {
// FIXME: This is a hack to break on ":", ",", ";" but will fail on strings
if ((byt & 0x80) != 0 || byt == 0
|| byt == 0x3a || byt == 0x2c || byt == 0x3b) {
break;
}
offset++;