MAINT: cleanup old FIXME comment.

This commit is contained in:
Jeremy Wall 2019-03-21 19:53:49 -05:00
parent b6a7f9778c
commit 708f23c674

View File

@ -1321,7 +1321,6 @@ impl<'a> FileBuilder<'a> {
fn eval_select(&self, def: &SelectDef, scope: &Scope) -> Result<Rc<Val>, Box<dyn Error>> { fn eval_select(&self, def: &SelectDef, scope: &Scope) -> Result<Rc<Val>, Box<dyn Error>> {
let target = &def.val; let target = &def.val;
// FIXME(jwall): Handle the no default case in here.
let fields = &def.tuple; let fields = &def.tuple;
// First resolve the target expression. // First resolve the target expression.
let v = self.eval_expr(target, scope)?; let v = self.eval_expr(target, scope)?;