示例#1
0
 protected virtual T VisitPhpBreakStatement(PhpBreakStatement node)
 {
     if (ThrowNotImplementedException)
     {
         throw new NotImplementedException(string.Format("Method {0} is not supported in class {1}", "VisitPhpBreakStatement", this.GetType().FullName));
     }
     return(default(T));
 }
示例#2
0
 protected override IPhpStatement VisitPhpBreakStatement(PhpBreakStatement node)
 {
     return(node);
 }