コード例 #1
0
ファイル: DiagnosticBag.cs プロジェクト: nullai/LeeLang
        public LeeDiagnosticInfo Add(ErrorCode code, Location location)
        {
            var info = new LeeDiagnosticInfo(code);
            var diag = new LeeDiagnostic(info, location);

            Add(diag);
            return(info);
        }
コード例 #2
0
ファイル: DiagnosticBag.cs プロジェクト: nullai/LeeLang
        public LeeDiagnosticInfo Add(ErrorCode code, Location location, params object[] args)
        {
            var info = new LeeDiagnosticInfo(code, args);
            var diag = new LeeDiagnostic(info, location);

            Add(diag);
            return(info);
        }