Exemplo n.º 1
0
 private static void AssertExpressionAttribute(AttributeStatement expected, AttributeStatement actual)
 {
     HandlebarsExpressionAssert.AssertExpression(expected.Expression, actual.Expression);
     AssertElementParts(expected.ChildNodes, actual.ChildNodes);
 }
Exemplo n.º 2
0
 public virtual void AfterVisit(AttributeStatement attributeStatement)
 {
 }
		public void AfterVisit(AttributeStatement attributeStatement)
		{
			throw new NotImplementedException();
		}
Exemplo n.º 4
0
 public virtual bool BeforeVisit(AttributeStatement attributeStatement)
 {
     attributeStatement.Expression.Accept(_expressionVisitor);
     return false;
 }
		public bool BeforeVisit(AttributeStatement attributeStatement)
		{
			throw new NotImplementedException();
		}