(cursor: &mut TreeCursor)
| 251 | } |
| 252 | |
| 253 | fn walk_tree_to_function(cursor: &mut TreeCursor) { |
| 254 | assert_eq!(cursor.node().kind(), "program"); |
| 255 | cursor.goto_first_child(); |
| 256 | assert_eq!(cursor.node().kind(), "function_declaration"); |
| 257 | } |
| 258 | |
| 259 | #[test] |
| 260 | fn fqns() { |
no outgoing calls