File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ use chalk_rust_ir::*;
4
4
use chalk_solve:: { RustIrDatabase , SolverChoice } ;
5
5
use std:: sync:: Arc ;
6
6
7
+ // FIXME: some of these are probably redundant, so we should figure out which panic in the same place in `chalk-engine`
8
+
7
9
#[ derive( Debug ) ]
8
10
enum PanickingMethod {
9
11
NoPanic ,
@@ -26,12 +28,11 @@ struct MockDatabase {
26
28
panicking_method : PanickingMethod ,
27
29
}
28
30
29
- /// This DB is representint lowered program:
31
+ /// This DB represents the following lowered program:
30
32
///
31
33
/// struct Foo { }
32
34
/// trait Bar { }
33
35
/// impl Bar for Foo { }
34
- // FIXME: Check if items returned from functions of this struct can be simplified
35
36
#[ allow( unused_variables) ]
36
37
impl RustIrDatabase < ChalkIr > for MockDatabase {
37
38
fn custom_clauses ( & self ) -> Vec < ProgramClause < ChalkIr > > {
You can’t perform that action at this time.
0 commit comments