getScopeChain method

Iterable<WipScope> getScopeChain()

Scope chain for this call frame.

Implementation

Iterable<WipScope> getScopeChain() => (json['scopeChain'] as List)
    .map((scope) => WipScope(scope as Map<String, dynamic>));