mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-18 16:53:02 +00:00
Formatting changes.
* doc/bison.texinfo: here.
This commit is contained in:
@@ -9249,9 +9249,9 @@ exp:
|
|||||||
| exp "-" exp @{ $$ = $1 - $3; @}
|
| exp "-" exp @{ $$ = $1 - $3; @}
|
||||||
| exp "*" exp @{ $$ = $1 * $3; @}
|
| exp "*" exp @{ $$ = $1 * $3; @}
|
||||||
| exp "/" exp @{ $$ = $1 / $3; @}
|
| exp "/" exp @{ $$ = $1 / $3; @}
|
||||||
| "(" exp ")" @{ std::swap($$, $2); @}
|
| "(" exp ")" @{ std::swap ($$, $2); @}
|
||||||
| "identifier" @{ $$ = driver.variables[$1]; @}
|
| "identifier" @{ $$ = driver.variables[$1]; @}
|
||||||
| "number" @{ std::swap($$, $1); @};
|
| "number" @{ std::swap ($$, $1); @};
|
||||||
%%
|
%%
|
||||||
@end example
|
@end example
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user