Actually just three programming languages in a trenchcoat
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

add comment about failure

+3
+3
trilogy-llvm/src/expression/mod.rs
··· 474 474 self.compile_expression(&decl.body, name) 475 475 } 476 476 _ => { 477 + // TODO: in theory, the above case should be covered by this one, but right now 478 + // if the above case is deleted, there are a few test cases that fail through this 479 + // case. Appears to be some cleanup that is being missed. 477 480 let end = self.get_end(""); 478 481 self.bind_temporary(end); 479 482 let next_to = self.compile_iterator(&decl.query, end)?;