1406 if instructions.len() != 2 {
1407 cx.record_error(CompilerErrorDetail {
1408▶ category: ErrorCategory::Todo,
1409 reason: "Support non-trivial for..in inits".to_string(),
1410 description: None,
· · ·
1483 if test_instrs.len() != 2 {
1484 cx.record_error(CompilerErrorDetail {
1485▶ category: ErrorCategory::Todo,
1486 reason: "Support non-trivial for..of inits".to_string(),
1487 description: None,
· · ·
1538 InstructionValue::StoreContext { .. } => {
1539 cx.record_error(CompilerErrorDetail {
1540▶ category: ErrorCategory::Todo,
1541 reason: format!("Support non-trivial {} inits", context_name),
1542 description: None,
· · ·
2115 let _declarator = &var_decl.declarations[0];
2116 cx.record_error(CompilerErrorDetail {
2117▶ category: ErrorCategory::Todo,
2118 reason: format!(
2119 "(CodegenReactiveFunction::codegenInstructionValue) Cannot declare variables in a value block"
· · ·
2125 expressions.push(Expression::StringLiteral(StringLiteral {
2126 base: BaseNode::typed("StringLiteral"),
2127▶ value: format!("TODO handle declaration").into(),
2128 }));
2129 }
+ 2 more matches in this file