Package org.fulib.scenarios.ast.decl
Interface Name.Visitor<P,R>
-
- All Superinterfaces:
ResolvedName.Visitor<P,R>,UnresolvedName.Visitor<P,R>
- All Known Subinterfaces:
Node.Visitor<P,R>,Positioned.Visitor<P,R>
- All Known Implementing Classes:
ExtractDecl,Namer,NameResolver,Typer
- Enclosing interface:
- Name
public static interface Name.Visitor<P,R> extends UnresolvedName.Visitor<P,R>, ResolvedName.Visitor<P,R>
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default Rvisit(Name name, P par)default Rvisit(ResolvedName resolvedName, P par)default Rvisit(UnresolvedName unresolvedName, P par)
-
-
-
Method Detail
-
visit
default R visit(UnresolvedName unresolvedName, P par)
- Specified by:
visitin interfaceUnresolvedName.Visitor<P,R>
-
visit
default R visit(ResolvedName resolvedName, P par)
- Specified by:
visitin interfaceResolvedName.Visitor<P,R>
-
-