Lines Matching refs:unexpected
264 unexpected: Cell<Option<Rc<Cell<Unexpected>>>>, field
387 unexpected: Rc<Cell<Unexpected>>, in new_parse_buffer()
394 unexpected: Cell::new(Some(unexpected)), in new_parse_buffer()
430 let mut unexpected = get_unexpected(buffer); in inner_unexpected() localVariable
432 match cell_clone(&unexpected) { in inner_unexpected()
433 Unexpected::None => return (unexpected, None), in inner_unexpected()
434 Unexpected::Some(span) => return (unexpected, Some(span)), in inner_unexpected()
435 Unexpected::Chain(next) => unexpected = next, in inner_unexpected()
441 cell_clone(&buffer.unexpected).unwrap() in get_unexpected()
449 if let Some(unexpected) = span_of_unexpected_ignoring_nones(inner) { in span_of_unexpected_ignoring_nones()
450 return Some(unexpected); in span_of_unexpected_ignoring_nones()
922 unexpected: Cell::new(Some(Rc::new(Cell::new(Unexpected::None)))), in fork()
1196 let unexpected = Rc::new(Cell::new(Unexpected::None)); in tokens_to_parse_buffer() localVariable
1197 new_parse_buffer(scope, cursor, unexpected) in tokens_to_parse_buffer()
1223 let unexpected = Rc::new(Cell::new(Unexpected::None)); in __parse_scoped() localVariable
1224 let state = new_parse_buffer(scope, cursor, unexpected); in __parse_scoped()