Get current build context. Args: env: SCons Environment Returns: BuildContext instance or None
(env)
| 260 | |
| 261 | @staticmethod |
| 262 | def GetContext(env) -> Optional[BuildContext]: |
| 263 | """ |
| 264 | Get current build context. |
| 265 | |
| 266 | Args: |
| 267 | env: SCons Environment |
| 268 | |
| 269 | Returns: |
| 270 | BuildContext instance or None |
| 271 | """ |
| 272 | return BuildContext.get_current() |
| 273 | |
| 274 | @staticmethod |
| 275 | def GetRTTRoot(env) -> str: |
nothing calls this directly
no test coverage detected