public void Visit(ThrowNode node)
 {
     if (node != null)
     {
         // if MacSafariQuirks is true, then we will be adding the semicolon
         // ourselves every single time and won't need outside code to add it.
         // otherwise we won't be adding it, but it will need it if there's something
         // to separate it from.
         DoesRequire = !m_settings.MacSafariQuirks;
     }
 }
示例#2
0
 public void Visit(ThrowNode node)
 {
     // starts with 'throw', so we don't care
 }
示例#3
0
 public void Visit(ThrowNode node)
 {
     ReportError(node);
 }
 public void Visit(ThrowNode node)
 {
     DebugEx.Fail("shouldn't get here");
 }
 public void Visit(ThrowNode node)
 {
     // invalid! ignore
     IsValid = false;
 }