#rune "" to ''; Remove infix and postfix call notation

This commit is contained in:
Ginger Bill
2016-11-28 20:39:43 +00:00
parent cbb70c7873
commit 598dab5bc4
19 changed files with 367 additions and 320 deletions
+1 -1
View File
@@ -42,10 +42,10 @@ bool rune_is_whitespace(Rune r) {
bool is_string_an_identifier(String s) {
isize offset = 0;
if (s.len < 1) {
return false;
}
isize offset = 0;
while (offset < s.len) {
bool ok = false;
Rune r = -1;