Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
clean-compiler-and-rts
compiler
Commits
43b2415c
Commit
43b2415c
authored
Jun 22, 2001
by
Ronny Wichers Schreur
🏢
Browse files
print matched symbol in CaseNode
parent
5205c07c
Changes
1
Hide whitespace changes
Inline
Side-by-side
backendC/CleanCompilerSources/dbprint.c
View file @
43b2415c
...
...
@@ -393,7 +393,12 @@ void PrintRuleNode (Node node,Bool brackets,int n_leading_spaces,File file)
PrintArguments
(
node
->
node_arguments
,
'\n'
,
True
,
n_leading_spaces
,
file
);
break
;
case
CaseNode
:
FPutS
(
"Case: [ "
,
file
);
FPutS
(
"Case: "
,
file
);
PrintSymbol
(
node
->
node_symbol
,
file
);
FPutS
(
" [ "
,
file
);
FPutS
(
" "
,
file
);
{
NodeIdRefCountListP
node_id_ref_count_elem
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment