(states: Map<string, Variable> = new Map(), name?: Scope['name'])
| 41 | |
| 42 | @autobind |
| 43 | public createChildScope(states: Map<string, Variable> = new Map(), name?: Scope['name']): Scope { |
| 44 | const layer = [states, ...this.layerdStates]; |
| 45 | return new Scope(layer, this, name); |
| 46 | } |
| 47 | |
| 48 | @autobind |
| 49 | public createChildNamespaceScope(nsName: string, states: Map<string, Variable> = new Map(), name?: Scope['name']): Scope { |
no outgoing calls
no test coverage detected