2 <link rel=
"stylesheet" href=
"style.css" type=
"text/css">
3 <meta content=
"text/html; charset=iso-8859-1" http-equiv=
"Content-Type">
4 <link rel=
"Start" href=
"index.html">
5 <link title=
"Index of types" rel=Appendix
href=
"index_types.html">
6 <link title=
"Index of exceptions" rel=Appendix
href=
"index_exceptions.html">
7 <link title=
"Index of values" rel=Appendix
href=
"index_values.html">
8 <link title=
"Index of modules" rel=Appendix
href=
"index_modules.html">
9 <link title=
"Types" rel=
"Chapter" href=
"Types.html">
10 <link title=
"Parser" rel=
"Chapter" href=
"Parser.html">
11 <link title=
"Lexer" rel=
"Chapter" href=
"Lexer.html">
12 <link title=
"Value" rel=
"Chapter" href=
"Value.html">
13 <link title=
"Signal" rel=
"Chapter" href=
"Signal.html">
14 <link title=
"Faustexp" rel=
"Chapter" href=
"Faustexp.html">
15 <link title=
"Interpreter" rel=
"Chapter" href=
"Interpreter.html">
16 <link title=
"Preprocess" rel=
"Chapter" href=
"Preprocess.html">
17 <link title=
"Main" rel=
"Chapter" href=
"Main.html"><title>Faustexp.print_exp
</title>
20 <code class=
"code"><span class=
"keyword">let
</span> print_exp
exp
=
<br>
21 <span class=
"keyword">let
</span> <span class=
"keyword">rec
</span> string_of_exp
exp
=
<span class=
"keyword">match
</span> exp
<span class=
"keyword">with
</span><br>
22 <span class=
"keywordsign">|
</span><span class=
"constructor">Const
</span> v
<span class=
"keywordsign">-
></span> <span class=
"string">"Const"</span> ^
<span class=
"string">" ("</span> ^
(string_of_value
v)
^
<span class=
"string">")"</span><br>
23 <span class=
"keywordsign">|
</span><span class=
"constructor">Ident
</span> s
<span class=
"keywordsign">-
></span> <span class=
"string">"Ident"</span> ^
<span class=
"string">" \""</span> ^ <span class="string
">"s
"</span> ^ <span class="string
">"\
""</span><br>
24 <span class=
"keywordsign">|
</span><span class=
"constructor">Par
</span> (e1,
e2)
<span class=
"keywordsign">-
></span> <span class=
"string">"Par"</span> ^
<span class=
"string">" ("</span> ^
(string_of_exp
e1)
^
<span class=
"string">", "</span> ^
(string_of_exp
e2)
^
<span class=
"string">")"</span><br>
25 <span class=
"keywordsign">|
</span><span class=
"constructor">Seq
</span> (e1,
e2)
<span class=
"keywordsign">-
></span> <span class=
"string">"Seq"</span> ^
<span class=
"string">" ("</span> ^
(string_of_exp
e1)
^
<span class=
"string">", "</span> ^
(string_of_exp
e2)
^
<span class=
"string">")"</span><br>
26 <span class=
"keywordsign">|
</span><span class=
"constructor">Split
</span> (e1,
e2)
<span class=
"keywordsign">-
></span> <span class=
"string">"Split"</span> ^
<span class=
"string">" ("</span> ^
(string_of_exp
e1)
^
<span class=
"string">", "</span> ^
(string_of_exp
e2)
^
<span class=
"string">")"</span><br>
27 <span class=
"keywordsign">|
</span><span class=
"constructor">Merge
</span> (e1,
e2)
<span class=
"keywordsign">-
></span> <span class=
"string">"Merge"</span> ^
<span class=
"string">" ("</span> ^
(string_of_exp
e1)
^
<span class=
"string">", "</span> ^
(string_of_exp
e2)
^
<span class=
"string">")"</span><br>
28 <span class=
"keywordsign">|
</span><span class=
"constructor">Rec
</span> (e1,
e2)
<span class=
"keywordsign">-
></span> <span class=
"string">"Rec"</span> ^
<span class=
"string">" ("</span> ^
(string_of_exp
e1)
^
<span class=
"string">", "</span> ^
(string_of_exp
e2)
^
<span class=
"string">")"</span><br>
29 <span class=
"keyword">in
</span><br>
30 print_string(
<span class=
"string">"Parer : Types.faust_exp = "</span>^
(string_of_exp
exp))
</code></body></html>