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

            m_undefined.Add(exception);
        }
Exemple #3
0
        internal void ReportUndefined(JsLookup lookup)
        {
            UndefinedReferenceException ex = new UndefinedReferenceException(lookup, this);

            Document.ReportUndefined(ex);
        }
 public UndefinedReferenceEventArgs(UndefinedReferenceException exception)
 {
     Exception = exception;
 }
        public void AddUndefinedReference(UndefinedReferenceException exception)
        {
            if (m_undefined == null)
            {
                m_undefined = new HashSet<UndefinedReferenceException>();
            }

            m_undefined.Add(exception);
        }
 public UndefinedReferenceEventArgs(UndefinedReferenceException exception)
 {
     Exception = exception;
 }
 internal void OnUndefinedReference(UndefinedReferenceException ex)
 {
     if (UndefinedReference != null)
     {
         UndefinedReference(this, new UndefinedReferenceEventArgs(ex));
     }
 }
 internal void ReportUndefined(JsLookup lookup)
 {
     UndefinedReferenceException ex = new UndefinedReferenceException(lookup, this);
     Document.ReportUndefined(ex);
 }
 internal void ReportUndefined(UndefinedReferenceException ex)
 {
     if (m_parser != null)
     {
         m_parser.OnUndefinedReference(ex);
     }
 }