Exemplo n.º 1
0
 internal static void TestLiteral(int level, ReSharper.NTriples.Tree.ILiteral param, String caller)
 {
     if (!CanVisitFurther(param))
     {
         return;
     }
     if (param is ReSharper.NTriples.Tree.IDataLiteral)
     {
         TestDataLiteral(level, (ReSharper.NTriples.Tree.IDataLiteral)param, caller);
     }
     else
     {
         throw new System.InvalidOperationException();
     }
 }
Exemplo n.º 2
0
 public virtual void VisitLiteral([JetBrains.Annotations.NotNull] ReSharper.NTriples.Tree.ILiteral literalParam, TContext context)
 {
     VisitNode(literalParam, context);
 }