dotnet/roslyn
在 GitHub 查看VB compiler should not "optimize" Select statements during initial binding
Open
#374 建立於 2015年2月10日
Area-CompilersBugConcept-Design DebtLanguage-VBhelp wanted
描述
The VB compiler "optimizes" Select statements during initial binding, generating and storing a lowered form for the cases depending on the structure of the whole select statement.
Generally speaking such transformations belong in lowering. Since it operates at the level of the whole Select statement after all of the parts have been bound, it can be moved en masse to a later phase. I recommend the local lowering phase.
Any intermediate phases that depend on the lowering having taken place are likely buggy, since different lowered forms may be generated in different circumstances.
[ported from TFS DevDiv 941313]