fix: release eq

This commit is contained in:
2025-07-05 21:07:23 +08:00
parent 5625f28e9b
commit 4b567ab022
22 changed files with 1132 additions and 915 deletions

View File

@@ -1,7 +1,5 @@
// TODO: Contextful String
use ecow::EcoString;
pub struct StringContext {
context: Vec<()>,
}
@@ -15,12 +13,12 @@ impl StringContext {
}
pub struct ContextfulString {
string: EcoString,
string: String,
context: StringContext,
}
impl ContextfulString {
pub fn new(string: EcoString) -> ContextfulString {
pub fn new(string: String) -> ContextfulString {
ContextfulString {
string,
context: StringContext::new(),