Exemple #1
0
        public void VisitGivenListPropertyDeclaration(IVisitedGivenListProperty givenListProperty)
        {
            if (currentClasses.Any())
            {
                currentClasses.Peek().AddListProperty(givenListProperty);
            }

            CreateOrActivateCurrentClass(givenListProperty.ClassName);
        }
Exemple #2
0
 public void VisitGivenListPropertyDeclaration(IVisitedGivenListProperty givenListProperty)
 {
     // ignore to keep test simple, just focus on the complex visits
 }
Exemple #3
0
 public void AddListProperty(IVisitedGivenListProperty givenListProperty) =>
 visitedGivenListProperties.Add(givenListProperty);
Exemple #4
0
 public void VisitGivenListPropertyDeclaration(IVisitedGivenListProperty givenListProperty)
 {
     // ignore other properties to keep test simple, just focus on the simple property visits
 }