(v *NodeVisitor)
| 2649 | } |
| 2650 | |
| 2651 | func (node *SourceFile) VisitEachChild(v *NodeVisitor) *Node { |
| 2652 | return v.Factory.UpdateSourceFile(node, v.visitTopLevelStatements(node.Statements), v.visitToken(node.EndOfFileToken)) |
| 2653 | } |
| 2654 | |
| 2655 | func (node *SourceFile) IsJS() bool { |
| 2656 | return IsSourceFileJS(node) |
nothing calls this directly
no test coverage detected