dotnet/roslyn

VB compiler should not "optimize" Select statements during initial binding

Open

#374 创建于 2015年2月10日

在 GitHub 查看
 (3 评论) (0 反应) (0 负责人)C# (20,414 star) (4,257 fork)batch import
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]

贡献者指南

VB compiler should not "optimize" Select statements during initial binding · dotnet/roslyn#374 | Good First Issue