2 implementations of VisitExptypeDecl
ILAssembler (2)
gen\CILBaseVisitor.cs (1)
1930
public virtual Result
VisitExptypeDecl
([NotNull] CILParser.ExptypeDeclContext context) { return VisitChildren(context); }
GrammarVisitor.cs (1)
2148
public GrammarResult
VisitExptypeDecl
(CILParser.ExptypeDeclContext context) => throw new UnreachableException(NodeShouldNeverBeDirectlyVisited);
1 reference to VisitExptypeDecl
ILAssembler (1)
gen\CILParser.cs (1)
16117
if (typedVisitor != null) return typedVisitor.
VisitExptypeDecl
(this);