Example #1
0
        public ErrorListItem(VoltaCompilerError error)
        {
            InitializeComponent();
            DataContext = this;

            ParserError = error;
            Defaults();
        }
Example #2
0
        public void CreateErrorToolTip(VoltaCompilerError error, TextMarker marker)
        {
            ErrorToolTip errorToolTip = new ErrorToolTip(error, marker);

            this.errorsToolTips.Add(errorToolTip);
        }
Example #3
0
 public ErrorToolTip(VoltaCompilerError error, TextMarker marker)
 {
     this.Error  = error;
     this.Marker = marker;
 }