(&mut self, data: &TaintData)
| 659 | } |
| 660 | |
| 661 | fn add_node(&mut self, data: &TaintData) { |
| 662 | let node = if self.dense { |
| 663 | Node::new(data) |
| 664 | } else { |
| 665 | Node::from(data) |
| 666 | }; |
| 667 | self.adg.get_or_add_node(node); |
| 668 | } |
| 669 | |
| 670 | /// the minimal subseq in symbol data that begin with [Merge] token and ends with [Join] token. |
| 671 | /// A merge_idx is additional returned, which is the previous one token before the [Merge] token. |
no test coverage detected