summaryrefslogtreecommitdiff
path: root/Doc/Devel
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2009-10-20 20:54:19 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2009-10-20 20:54:19 +0000
commit9062890aa6ecc9c2cc95d03063cf54b644cc0c20 (patch)
tree9539f8078a7d5db6733730ea6a9c5f7c457fffdb /Doc/Devel
parentfd222c5e66add5f3b40c0b3e10191096be22a746 (diff)
downloadswig-9062890aa6ecc9c2cc95d03063cf54b644cc0c20.tar.gz
update deprecated dump_tags, dump_tree, dump_module options
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@11706 626c5289-ae23-0410-ae9c-e8d60b6d4f22
Diffstat (limited to 'Doc/Devel')
-rw-r--r--Doc/Devel/tree.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/Devel/tree.html b/Doc/Devel/tree.html
index 64d9d197d..43ad191f6 100644
--- a/Doc/Devel/tree.html
+++ b/Doc/Devel/tree.html
@@ -218,10 +218,10 @@ The following functions are used to help debug SWIG parse trees.
<blockquote>
Prints the tag-structure of the parse tree to standard output. <tt>node</tt> is the top-level parse tree node. <tt>prefix</tt> is
a string prefix thats added to the start of each line. Normally, you would specify the empty string or NIL for <tt>prefix</tt>.
-This function is called by the <tt>-dump_tags</tt> option to SWIG.
+This function is called by the <tt>-debug-tags</tt> option to SWIG.
<pre>
-% swig -dump_tags -python example.i
+% swig -debug-tags -python example.i
. top (:1)
. top . include (/Users/beazley/Projects/share/swig/1.3.31/swig.swg:0)
. top . include . include (/Users/beazley/Projects/share/swig/1.3.31/swigwarnings.swg:0)
@@ -243,7 +243,7 @@ Since many language modules include hundreds of typemaps and other information,
<blockquote>
Prints the contents of a parse tree node, including all children, to standard output. The output includes all attributes
-and other details. The command line option <tt>-dump_tree</tt> produces output generated by this function.
+and other details.
</blockquote>
<p>
@@ -251,8 +251,8 @@ and other details. The command line option <tt>-dump_tree</tt> produces output
<blockquote>
Prints the same output as <tt>Swig_print_node()</tt> except that it also processes all of the siblings of <tt>node</tt>. This can
-be used to dump the entire parse tree to standard output. Use the command line option <tt>-dump_tree</tt> to get
-the output of this function for a SWIG input file.
+be used to dump the entire parse tree to standard output. The command line options <tt>-debug-module</tt>
+and <tt>-debug-top</tt> use this function to display the parse tree for a SWIG input file.
</blockquote>