mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
* remove yew-dsl * remove yew-components * remove yew-services * remove yew::format * fix CI * move yew::agent to yew-agent crate * move yew-functional to yew plus a couple of misc fixes * move futures and neqassign out of yewtil * move yewtil::store to yew_agent, remove yewtil * formatting * fix tests * update docs * use `rustwasm` gloo repo instead of mine * add docs * use rustwasm/gloo repo * remove unused file * fix Makefile.toml * Fix issues after rebase * Apply suggestions from code review (part 1) Co-authored-by: mc1098 <m.cripps1@uni.brighton.ac.uk> * Apply suggestions from code review (part 2) * move `#[function_component(_)]` tests missed those before * Apply suggestions from code review Co-authored-by: mc1098 <m.cripps1@uni.brighton.ac.uk> Co-authored-by: mc1098 <m.cripps1@uni.brighton.ac.uk>
8 lines
214 B
Rust
8 lines
214 B
Rust
#[allow(dead_code)]
|
|
#[rustversion::attr(stable(1.51), test)]
|
|
fn tests() {
|
|
let t = trybuild::TestCases::new();
|
|
t.pass("tests/function_attr/*-pass.rs");
|
|
t.compile_fail("tests/function_attr/*-fail.rs");
|
|
}
|