(props: TangoNodeConstructorPropsType)
| 36 | } |
| 37 | |
| 38 | constructor(props: TangoNodeConstructorPropsType) { |
| 39 | this.file = props.file; |
| 40 | this.id = props.id; |
| 41 | this.component = props.component; |
| 42 | this.rawNode = props.rawNode; |
| 43 | this.props = getJSXElementAttributes(cloneJSXElementWithoutTrackingData(props.rawNode)); |
| 44 | } |
| 45 | |
| 46 | /** |
| 47 | * 返回克隆后的 ast 节点 |
nothing calls this directly
no test coverage detected