コード例 #1
0
ファイル: CompileMessage.cs プロジェクト: pyzh/ZCompileCore2
        //public bool IsWarning { get; set; }

        //public CompileMessageEnum MessageEnum { get; set; }

        public CompileMessage(ZCompileFileInfo srcfile, int line, int col, string text)
        {
            SourceFileInfo = srcfile;
            Line           = line;
            Col            = col;
            Text           = text;
        }
コード例 #2
0