getContextForScope method
Implementation
Context getContextForScope(Scope scope) {
// Some transient scopes may not have been registered; fall back to program.
return contexts[scope] ?? contexts[program]!;
}
Context getContextForScope(Scope scope) {
// Some transient scopes may not have been registered; fall back to program.
return contexts[scope] ?? contexts[program]!;
}