Esempio n. 1
0
        public void VisitGivenComplexPropertyDeclaration(IVisitedGivenComplexProperty givenComplexProperty)
        {
            if (currentClasses.Any())
            {
                currentClasses.Peek().AddComplexProperty(givenComplexProperty);
            }

            CreateOrActivateCurrentClass(givenComplexProperty.ClassName);
        }
Esempio n. 2
0
 public void VisitGivenComplexPropertyDeclaration(IVisitedGivenComplexProperty givenComplexProperty) =>
 recordedTableProperties.Add(givenComplexProperty.ToString());
Esempio n. 3
0
 public void AddComplexProperty(IVisitedGivenComplexProperty givenComplexProperty) =>
 visitedGivenComplexProperties.Add(givenComplexProperty);
Esempio n. 4
0
 public void VisitGivenComplexPropertyDeclaration(IVisitedGivenComplexProperty givenComplexProperty)
 {
     // ignore other properties to keep test simple, just focus on the simple property visits
 }