internal ChildScopeData(SymMethod symMethod, ScopeData parent, LocalScopeHandle handle)
            : base(symMethod)
        {
            Debug.Assert(parent != null);
            Debug.Assert(!handle.IsNil);

            _handle = handle;
            _parent = parent;
        }
Esempio n. 2
0
 internal SymScope(ScopeData data)
 {
     Debug.Assert(data != null);
     _data = data;
 }
Esempio n. 3
0
 internal SymScope(ScopeData data)
 {
     Debug.Assert(data != null);
     _data = data;
 }