- Roslyn Cookbook
- Manish Vasani
- 192字
- 2021-07-15 17:07:34
Creating a compilation analyzer to analyze whole compilation and report issues
A stateful compilation analyzer registers action callbacks that require compilation-wide analysis of symbols and/or syntax to report issues about declarations or executable code in the compilation. These analyzers generally need to initialize some mutable state at the start of the analysis, which is updated while analyzing the compilation, and the final state is used to report diagnostics.
In this section, we will create an analyzer that performs compilation-wide analysis and reports. Diagnostic secure types must not implement interfaces with insecure methods for the following scenarios:
- Assume we have an interface, say MyNamespace.ISecureType, which is a well-known secure interface, i.e. it is a marker for all secure types in an assembly.
- Assume we have a method attribute, say MyNamespace.InsecureMethodAttribute, which marks the method on which the attribute is applied as insecure. An interface which has any member with such an attribute, must be considered insecure.
- We want to report diagnostics for types implementing the well-known secure interface that also implements any insecure interfaces.
Analyzer performs compilation-wide analysis to detect such violating types and reports diagnostics for them in the compilation end action.
推薦閱讀
- Spring Cloud Alibaba微服務架構設計與開發實戰
- 架構不再難(全5冊)
- Cocos2d-x游戲開發:手把手教你Lua語言的編程方法
- 數據結構(Java語言描述)
- Java網絡編程實戰
- 快速入門與進階:Creo 4·0全實例精講
- Android群英傳
- Machine Learning With Go
- Visual Studio Code 權威指南
- 平面設計經典案例教程:CorelDRAW X6
- Python Machine Learning Blueprints:Intuitive data projects you can relate to
- Node.js從入門到精通
- OpenCV 3.0 Computer Vision with Java
- JavaScript編程精解(原書第2版)
- JavaScript Concurrency