/// <summary> /// /// </summary> /// <param name="node"></param> /// <remarks> /// This will cause an AST walker to be created, thus we don't need to go further deeper in the /// tree by visiting the node. /// </remarks> public override void VisitClassDeclaration(ClassDeclarationSyntax node) { var classWalker = ClassASTWalker.Create(node, this.CreateWalkingContext(), this.semanticModel); var translationUnit = classWalker.Walk(); this.program.AddContent(translationUnit); this.InvokeClassDeclarationVisited(this, new WalkerEventArgs()); }
public override void VisitClassDeclaration(ClassDeclarationSyntax node) { base.VisitClassDeclaration(node); var classWalker = ClassASTWalker.Create(node); var translationUnit = classWalker.Walk(); this.module.AddClass(translationUnit); this.InvokeClassDeclarationVisited(this, new WalkerEventArgs()); }
/// <summary> /// /// </summary> /// <param name="node"></param> /// <remarks> /// This will cause an AST walker to be created, thus we don't need to go further deeper in the /// tree by visiting the node. /// </remarks> public override void VisitClassDeclaration(ClassDeclarationSyntax node) { var classWalker = ClassASTWalker.Create(node, this.CreateWalkingContext(), this.semanticModel); classWalker.Logger = this.Logger; var translationUnit = classWalker.Walk(); this.module.AddClass(translationUnit); this.LogVisitClassDeclaration(node); // Logging this.InvokeClassDeclarationVisited(this, new WalkerEventArgs()); }
/// <summary> /// Copy initializes a new instance of the <see cref="ClassASTWalker"/> class. /// </summary> /// <param name="other"></param> /// <remarks> /// For testability. /// </remarks> public ClassASTWalker(ClassASTWalker other) : base(other) { this.classDeclaration = other.classDeclaration; }