bindStaticScope method

void bindStaticScope(
  1. VmClass staticScope
)

作为内部定义类型的静态成员或实例来绑定静态作用域

Implementation

void bindStaticScope(VmClass staticScope) {
  final target = _valueData;
  if (target is VmValue) {
    target.bindStaticScope(staticScope);
  } else {
    _staticScope ??= staticScope;
  }
}