aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Explorer/ExplorerFileDefinition.cs
Commit message (Expand)AuthorAgeFilesLines
* Working on TCC..Roy Ben-Shabat2019-05-061-1/+1
* Working on Touch FileExplorer !Roy Ben-Shabat2018-11-211-0/+88
using Microsoft.CodeAnalysis;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.Scripting.Basic
{
    public class CompilationError
    {
        public String File { get; set; }
        public String Message { get; set; }
        public DiagnosticSeverity Severity { get; set; }
        public int Position { get; set; }
        public int Line { get; set; }
        public int Column { get; set; }
        public int Length { get; set; }
    }
}