| 67 | // The context information of a pending exercise |
| 68 | #[derive(PartialEq, Debug)] |
| 69 | pub struct ContextLine { |
| 70 | // The source code that is still pending completion |
| 71 | pub line: String, |
| 72 | // The line number of the source code still pending completion |
| 73 | pub number: usize, |
| 74 | // Whether or not this is important |
| 75 | pub important: bool, |
| 76 | } |
| 77 | |
| 78 | // The result of compiling an exercise |
| 79 | pub struct CompiledExercise<'a> { |
nothing calls this directly
no outgoing calls
no test coverage detected