A trait for encoding the statements for type-checking the spec.
| 331 | |
| 332 | /// A trait for encoding the statements for type-checking the spec. |
| 333 | pub trait EncodeTypeCheck { |
| 334 | fn encode_type_check(&self, tokens: &mut TokenStream); |
| 335 | } |
| 336 | |
| 337 | impl EncodeTypeCheck for Vec<Specification> { |
| 338 | fn encode_type_check(&self, tokens: &mut TokenStream) { |
nothing calls this directly
no outgoing calls
no test coverage detected