Skip to content

Commit

Permalink
Updated UI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
RunDevelopment committed Dec 8, 2024
1 parent 5e461ff commit bd9f847
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions crates/macro/ui-tests/unsupported-options.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ error[E0277]: JavaScript constructors are not supported for `RustEnum`
= note: Consider removing the `constructor` option and using a regular static method instead.
= help: the trait `SupportsConstructor` is implemented for `RustStruct`
note: required by a bound in `CheckSupportsConstructor`
--> $WORKSPACE/src/marker.rs
--> $WORKSPACE/src/rt/marker.rs
|
| pub struct CheckSupportsConstructor<T: SupportsConstructor>(T);
| ^^^^^^^^^^^^^^^^^^^ required by this bound in `CheckSupportsConstructor`
Expand All @@ -31,7 +31,7 @@ error[E0277]: JavaScript instance getters and setters are not supported for `Rus
= note: `#[wasm_bindgen(getter)]` and `#[wasm_bindgen(setter)]` are only supported for `struct`s and cannot be used for `enum`s.
= help: the trait `SupportsInstanceProperty` is implemented for `RustStruct`
note: required by a bound in `CheckSupportsInstanceProperty`
--> $WORKSPACE/src/marker.rs
--> $WORKSPACE/src/rt/marker.rs
|
| pub struct CheckSupportsInstanceProperty<T: SupportsInstanceProperty>(T);
| ^^^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `CheckSupportsInstanceProperty`
Expand All @@ -50,7 +50,7 @@ error[E0277]: JavaScript instance getters and setters are not supported for `Rus
= note: `#[wasm_bindgen(getter)]` and `#[wasm_bindgen(setter)]` are only supported for `struct`s and cannot be used for `enum`s.
= help: the trait `SupportsInstanceProperty` is implemented for `RustStruct`
note: required by a bound in `CheckSupportsInstanceProperty`
--> $WORKSPACE/src/marker.rs
--> $WORKSPACE/src/rt/marker.rs
|
| pub struct CheckSupportsInstanceProperty<T: SupportsInstanceProperty>(T);
| ^^^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `CheckSupportsInstanceProperty`
Expand All @@ -69,7 +69,7 @@ error[E0277]: JavaScript static getters and setters are not supported for `RustE
= note: `#[wasm_bindgen(getter)]` and `#[wasm_bindgen(setter)]` are only supported for `struct`s and cannot be used for `enum`s.
= help: the trait `SupportsStaticProperty` is implemented for `RustStruct`
note: required by a bound in `CheckSupportsStaticProperty`
--> $WORKSPACE/src/marker.rs
--> $WORKSPACE/src/rt/marker.rs
|
| pub struct CheckSupportsStaticProperty<T: SupportsStaticProperty>(T);
| ^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `CheckSupportsStaticProperty`
Expand All @@ -88,7 +88,7 @@ error[E0277]: JavaScript static getters and setters are not supported for `RustE
= note: `#[wasm_bindgen(getter)]` and `#[wasm_bindgen(setter)]` are only supported for `struct`s and cannot be used for `enum`s.
= help: the trait `SupportsStaticProperty` is implemented for `RustStruct`
note: required by a bound in `CheckSupportsStaticProperty`
--> $WORKSPACE/src/marker.rs
--> $WORKSPACE/src/rt/marker.rs
|
| pub struct CheckSupportsStaticProperty<T: SupportsStaticProperty>(T);
| ^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `CheckSupportsStaticProperty`
Expand Down

0 comments on commit bd9f847

Please sign in to comment.