Lines Matching defs:tree

14     let tree = parser  in test_parsing_simple_string()  localVariable
110 let tree = parser in test_parsing_with_custom_utf8_input() localVariable
156 let tree = parser in test_parsing_with_custom_utf16_input() localVariable
192 let tree = parser in test_parsing_with_callback_returning_owned_strings() localVariable
212 let tree = parser in test_parsing_text_with_byte_order_mark() localVariable
225 let mut tree = parser.parse("\u{FEFF}fn a() {}", None).unwrap(); in test_parsing_text_with_byte_order_mark() localVariable
241 let mut tree = parser.parse(" \u{FEFF}fn a() {}", Some(&tree)).unwrap(); in test_parsing_text_with_byte_order_mark() localVariable
257 let tree = parser.parse("\u{FEFF}fn a() {}", Some(&tree)).unwrap(); in test_parsing_text_with_byte_order_mark() localVariable
269 let tree = parser.parse(b"\xdf", None).unwrap(); in test_parsing_invalid_chars_at_eof() localVariable
277 let tree = parser.parse(b"var \0 something;", None).unwrap(); in test_parsing_unexpected_null_characters_within_source() localVariable
290 let tree = parser in test_parsing_ends_when_input_callback_returns_empty() localVariable
314 let mut tree = parser.parse(&code, None).unwrap(); in test_parsing_after_editing_beginning_of_code() localVariable
336 let tree = parser in test_parsing_after_editing_beginning_of_code() localVariable
361 let mut tree = parser.parse(&code, None).unwrap(); in test_parsing_after_editing_end_of_code() localVariable
383 let tree = parser in test_parsing_after_editing_end_of_code() localVariable
407 let tree = parser.parse("", None); in test_parsing_empty_file_with_reused_tree() localVariable
410 let tree = parser.parse("\n ", None); in test_parsing_empty_file_with_reused_tree() localVariable
436 let mut tree = parser.parse(&code, None).unwrap(); in test_parsing_after_editing_tree_that_depends_on_column_values() localVariable
469 let tree = parser in test_parsing_after_editing_tree_that_depends_on_column_values() localVariable
501 let tree = parser.parse(this_file_source, None).unwrap(); in test_parsing_on_multiple_threads() localVariable
553 let tree = parser.parse_with( in test_parsing_cancelled_by_another_thread() localVariable
574 let tree = parser.parse_with( in test_parsing_cancelled_by_another_thread() localVariable
602 let tree = parser.parse_with( in test_parsing_with_a_timeout() localVariable
618 let tree = parser.parse_with( in test_parsing_with_a_timeout() localVariable
634 let tree = parser in test_parsing_with_a_timeout() localVariable
657 let tree = parser.parse( in test_parsing_with_a_timeout_and_a_reset() localVariable
666 let tree = parser.parse( in test_parsing_with_a_timeout_and_a_reset() localVariable
681 let tree = parser.parse( in test_parsing_with_a_timeout_and_a_reset() localVariable
691 let tree = parser.parse( in test_parsing_with_a_timeout_and_a_reset() localVariable
713 let tree = parser.parse( in test_parsing_with_a_timeout_and_implicit_reset() localVariable
723 let tree = parser.parse( in test_parsing_with_a_timeout_and_implicit_reset() localVariable
746 let tree = parser.parse( in test_parsing_with_timeout_and_no_completion() localVariable
976 let tree = parser.parse_utf16(&utf16_source_code, None).unwrap(); in test_parsing_utf16_code_with_errors_at_the_end_of_an_included_range() localVariable
1007 let tree = parser.parse(source_code, None).unwrap(); in test_parsing_with_external_scanner_that_uses_included_range_boundaries() localVariable
1069 let tree = parser.parse(&source_code, Some(&first_tree)).unwrap(); in test_parsing_with_a_newly_excluded_range() localVariable
1120 let tree = parser.parse(source_code, None).unwrap(); in test_parsing_with_a_newly_included_range() localVariable
1227 let tree = parser.parse(source_code, None).unwrap(); in test_parsing_with_included_ranges_and_missing_tokens() localVariable