コード例 #1
0
        internal ChildScopeData(SymMethod symMethod, ScopeData parent, LocalScopeHandle handle)
            : base(symMethod)
        {
            Debug.Assert(parent != null);
            Debug.Assert(!handle.IsNil);

            _handle = handle;
            _parent = parent;
        }
コード例 #2
0
ファイル: SymScope.cs プロジェクト: RoryVL/roslyn
 internal SymScope(ScopeData data)
 {
     Debug.Assert(data != null);
     _data = data;
 }
コード例 #3
0
ファイル: SymScope.cs プロジェクト: lodejard/AllNetCore
 internal SymScope(ScopeData data)
 {
     Debug.Assert(data != null);
     _data = data;
 }