(node *ast.Node)
| 875 | } |
| 876 | |
| 877 | func (b *Binder) bindJsxAttributes(node *ast.Node) { |
| 878 | b.bindAnonymousDeclaration(node, ast.SymbolFlagsObjectLiteral, ast.InternalSymbolNameJSXAttributes) |
| 879 | } |
| 880 | |
| 881 | func (b *Binder) bindJsxAttribute(node *ast.Node, symbolFlags ast.SymbolFlags, symbolExcludes ast.SymbolFlags) { |
| 882 | b.declareSymbolAndAddToSymbolTable(node, symbolFlags, symbolExcludes) |
no test coverage detected