Skip to content

Instantly share code, notes, and snippets.

@mlcollard
Created September 28, 2023 16:21
Show Gist options
  • Select an option

  • Save mlcollard/a1f9b1d15225563ddb2442415c97e85d to your computer and use it in GitHub Desktop.

Select an option

Save mlcollard/a1f9b1d15225563ddb2442415c97e85d to your computer and use it in GitHub Desktop.
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:src="http://www.srcML.org/srcML/src"
xmlns:cpp="http://www.srcML.org/srcML/cpp"
version="1.0">
<!--
callgraph.xsl
Generate the edges in a callgraph
-->
<xsl:output method="text"/>
<!-- For every call in a function definition, output the digraph notation for that edge -->
<!-- TODO -->
<!-- Filter out all original text -->
<xsl:template match="text()"/>
</xsl:stylesheet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment