Skip to content

Commit

Permalink
remove deprecated comments (#754)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonwilliams authored Oct 1, 2020
1 parent 2feb72a commit 07ff7a8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion boa/src/builtins/string/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,6 @@ impl String {
.nth(pos as usize)
.expect("failed to get utf16 value");
// If there is no element at that index, the result is NaN
// TODO: We currently don't have NaN
Ok(Value::from(f64::from(utf16_val)))
}

Expand Down
3 changes: 0 additions & 3 deletions boa/src/exec/statement_list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,10 @@ impl Executable for StatementList {
break;
}
InterpreterState::Break(_label) => {
// TODO, break to a label.

// Early break.
break;
}
InterpreterState::Continue(_label) => {
// TODO, continue to a label.
break;
}
InterpreterState::Executing => {
Expand Down

0 comments on commit 07ff7a8

Please sign in to comment.