Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ast/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@ fn unescape_string(s: &str) -> String {
}
}
Some(c) => result.push_str(&format!("\\{c}")), // 未知转义字符,保留原始形式
None => result.push('\\'), // 单独的反斜杠,保留原始形式
None => result.push('\\'), // 单独的反斜杠,保留原始形式
}
} else {
result.push(c);
Expand Down
1 change: 0 additions & 1 deletion src/bytecode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ impl Module {
}
}


#[derive(Debug, Clone)]
pub struct Bytecode {
pub opcode: Opcode,
Expand Down
Loading