()
| 1031 | } |
| 1032 | |
| 1033 | func (b *Binder) bindDeferredExpandoAssignments() { |
| 1034 | for _, info := range b.expandoAssignments { |
| 1035 | b.container = info.container |
| 1036 | b.blockScopeContainer = info.blockScopeContainer |
| 1037 | b.bindDeferredExpandoAssignment(info.node) |
| 1038 | } |
| 1039 | } |
| 1040 | |
| 1041 | // If the given module symbol has an export= symbol, promote exports with a type or namespace meaning |
| 1042 | // from the module symbol onto the export= symbol and, if any such exports exist, mark the export= |
no test coverage detected