Create new scope from this one.
(self, scope_type, *args)
| 139 | self.children = [] |
| 140 | |
| 141 | def create(self, scope_type, *args): |
| 142 | "Create new scope from this one." |
| 143 | return scope_type(self.compiler, *args) |
| 144 | |
| 145 | def __enter__(self): |
| 146 | if self.compiler.scope is not self: |
no outgoing calls
no test coverage detected