MCPcopy Create free account
hub / github.com/alecazam/kram / VisitFunction

Method VisitFunction

hlslparser/src/HLSLTree.cpp:748–759  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

746}*/
747
748void HLSLTreeVisitor::VisitFunction(HLSLFunction *node)
749{
750 VisitType(node->returnType);
751
752 HLSLArgument *argument = node->argument;
753 while (argument != NULL) {
754 VisitArgument(argument);
755 argument = argument->nextArgument;
756 }
757
758 VisitStatements(node->statement);
759}
760
761void HLSLTreeVisitor::VisitArgument(HLSLArgument *node)
762{

Callers 1

PruneTreeFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected