Interface PythonSourceVisitor
public interface PythonSourceVisitor
Visits Python source metadata supplied for an individual compilation.
-
Method Summary
Modifier and TypeMethodDescriptiondefault voidfinish(VisitorContext context) Invoked after every Python source file has been visited.voidvisit(PythonSource source, VisitorContext context) Visits one parsed Python source file.
-
Method Details
-
visit
Visits one parsed Python source file.- Parameters:
source- the source metadatacontext- the visitor context
-
finish
Invoked after every Python source file has been visited.- Parameters:
context- the visitor context
-