コード例 #1
0
ファイル: MethodTable.cs プロジェクト: knoxaramav2/KCC
        internal void AddFunction(ulong refId, ulong scopeId, string symbol, uint returnType,
                                  List <uint> types, List <uint> refs)
        {
            Debug.PrintDbg($"+Method {returnType} {scopeId}::{refId} {symbol} [{types}] [{refs}]");

            var method = new MethodRecord(refId, symbol, returnType, types, refs);

            _records.Add(refId, method);
            _trackedRecord = method;
        }
コード例 #2
0
ファイル: MethodTable.cs プロジェクト: knoxaramav2/KCC
 internal void CloseFunction()
 {
     _trackedRecord = null;
 }