(node *ast.Node, symbolFlags ast.SymbolFlags, symbolExcludes ast.SymbolFlags)
| 879 | } |
| 880 | |
| 881 | func (b *Binder) bindJsxAttribute(node *ast.Node, symbolFlags ast.SymbolFlags, symbolExcludes ast.SymbolFlags) { |
| 882 | b.declareSymbolAndAddToSymbolTable(node, symbolFlags, symbolExcludes) |
| 883 | } |
| 884 | |
| 885 | func (b *Binder) setExportContextFlag(node *ast.Node) { |
| 886 | // A declaration source file or ambient module declaration that contains no export declarations (but possibly regular |
no test coverage detected