Assemble kernel on the client #1

Merged
cdo merged 72 commits from client-side-assembler into main 2026-03-18 15:21:33 +00:00
Showing only changes of commit 3a103c46d1 - Show all commits

3
asm.js
View File

@@ -58,7 +58,8 @@ class Tokenizer {
this.buffer.push(...src);
let token;
while (token = this.next()) {
if (token == this.comment_start)
if (token.string == undefined
&& token.startsWith(this.comment_start))
this.comment = true;
else if (this.comment && token == LINE_END)
this.comment = false;