RootNode returns the root note of the parsed JavaScript
()
| 61 | |
| 62 | // RootNode returns the root note of the parsed JavaScript |
| 63 | func (a *Analyzer) RootNode() *Node { |
| 64 | return a.rootNode |
| 65 | } |
| 66 | |
| 67 | // isProbablyHTML returns true for source that is probably HTML. |
| 68 | // False positives are OK as long as the false positives are not |
no outgoing calls