Example #1
0
 internal void ReportUndefined(UndefinedReferenceException ex)
 {
     if (m_parser != null)
     {
         m_parser.OnUndefinedReference(ex);
     }
 }
 internal void ReportUndefined(UndefinedReferenceException ex)
 {
     if (m_parser != null)
     {
         m_parser.OnUndefinedReference(ex);
     }
 }
Example #3
0
        public void AddUndefinedReference(UndefinedReferenceException exception)
        {
            if (m_undefined == null)
            {
                m_undefined = new HashSet <UndefinedReferenceException>();
            }

            m_undefined.Add(exception);
        }
 public UndefinedReferenceEventArgs(UndefinedReferenceException exception)
 {
     m_exception = exception;
 }
Example #5
0
        internal void ReportUndefined(Lookup lookup)
        {
            UndefinedReferenceException ex = new UndefinedReferenceException(lookup, this);

            Document.ReportUndefined(ex);
        }
Example #6
0
 internal void ReportUndefined(Lookup lookup)
 {
     UndefinedReferenceException ex = new UndefinedReferenceException(lookup, this);
     Document.ReportUndefined(ex);
 }
 public UndefinedReferenceEventArgs(UndefinedReferenceException exception)
 {
     m_exception = exception;
 }
Example #8
0
 internal void OnUndefinedReference(UndefinedReferenceException ex)
 {
     if (UndefinedReference != null)
     {
         UndefinedReference(this, new UndefinedReferenceEventArgs(ex));
     }
 }