-
-
Notifications
You must be signed in to change notification settings - Fork 115
test: fuzz test for apply_update #447
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## master #447 +/- ##
==========================================
- Coverage 69.15% 68.99% -0.17%
==========================================
Files 152 161 +9
Lines 16755 17467 +712
==========================================
+ Hits 11587 12051 +464
- Misses 5168 5416 +248
☔ View full report in Codecov by Sentry. |
pub static ARRAY_OPS: phf::Map< | ||
&'static str, | ||
fn(doc: &yrs::Doc, nest_input: &YrsNestType, params: CRDTParam) -> (), | ||
> = phf_map! { |
Check warning
Code scanning / clippy
very complex type used. Consider factoring parts into `type` definitions
pub static MAP_OPS: phf::Map< | ||
&'static str, | ||
fn(doc: &yrs::Doc, nest_input: &YrsNestType, params: CRDTParam) -> (), | ||
> = phf_map! { |
Check warning
Code scanning / clippy
very complex type used. Consider factoring parts into `type` definitions
pub static TEXT_OPS: phf::Map< | ||
&'static str, | ||
fn(doc: &yrs::Doc, nest_input: &YrsNestType, params: CRDTParam) -> (), | ||
> = phf_map! { |
Check warning
Code scanning / clippy
very complex type used. Consider factoring parts into `type` definitions
pub static XML_ELEMENT_OPS: phf::Map< | ||
&'static str, | ||
fn(doc: &yrs::Doc, nest_input: &YrsNestType, params: CRDTParam) -> (), | ||
> = phf_map! { |
Check warning
Code scanning / clippy
very complex type used. Consider factoring parts into `type` definitions
pub static XML_FRAGMENT_OPS: phf::Map< | ||
&'static str, | ||
fn(doc: &yrs::Doc, nest_input: &YrsNestType, params: CRDTParam) -> (), | ||
> = phf_map! { |
Check warning
Code scanning / clippy
very complex type used. Consider factoring parts into `type` definitions
pub static XML_TEXT_OPS: phf::Map< | ||
&'static str, | ||
fn(doc: &yrs::Doc, nest_input: &YrsNestType, params: CRDTParam) -> (), | ||
> = phf_map! { |
Check warning
Code scanning / clippy
very complex type used. Consider factoring parts into `type` definitions
HashMap< | ||
CRDTNestType, | ||
&'a phf::Map< | ||
&'static str, | ||
fn(doc: &yrs::Doc, nest_input: &YrsNestType, params: CRDTParam) -> (), | ||
>, | ||
>, |
Check warning
Code scanning / clippy
very complex type used. Consider factoring parts into `type` definitions
pub fn get_ops( | ||
&self, | ||
crdt_nest_type: &CRDTNestType, | ||
) -> &phf::map::Map<&'static str, fn(&Doc, &YrsNestType, CRDTParam) -> ()> { |
Check warning
Code scanning / clippy
very complex type used. Consider factoring parts into `type` definitions
pub fn get_ops_from_yrs_nest_type( | ||
&self, | ||
yrs_nest_type: &YrsNestType, | ||
) -> &phf::map::Map<&'static str, fn(&Doc, &YrsNestType, CRDTParam) -> ()> { |
Check warning
Code scanning / clippy
very complex type used. Consider factoring parts into `type` definitions
No description provided.