We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
yash-arith/src/lib.rs
yash-semantics/src/expansion/initial/arith.rs
For non-portable extensions to the arithmetic expansion semantics, see #261.
The text was updated successfully, but these errors were encountered:
Syntax of arithmetic expansion:
AssignmentExp := ConditionalExp | ConditionalExp AssignmentOperator AssignmentExp; ConditionalExp := LogicalOrExp | LogicalOrExp "?" AssignmentExp ":" ConditionalExp; LogicalOrExp := LogicalAndExp | LogicalOrExp "||" LogicalAndExp; LogicalAndExp := InclusiveOrExp | LogicalAndExp "&&" InclusiveOrExp; InclusiveOrExp := ExclusiveOrExp | InclusiveOrExp "|" ExclusiveOrExp; ExclusiveOrExp := AndExp | ExclusiveOrExp "^" AndExp; AndExp := EqualityExp | AndExp "&" EqualityExp; EqualityExp := RelationalExp | EqualityExp "==" RelationalExp | EqualityExp "!=" RelationalExp; RelationalExp := ShiftExp | RelationalExp "<" ShiftExp | RelationalExp ">" ShiftExp | RelationalExp "<=" ShiftExp | RelationalExp ">=" ShiftExp; ShiftExp := AdditiveExp | ShiftExp "<<" AdditiveExp | ShiftExp ">>" AdditiveExp; AdditiveExp := MultiplicativeExp | AdditiveExp "+" MultiplicativeExp | AdditiveExp "-" MultiplicativeExp; MultiplicativeExp := PrefixExp | MultiplicativeExp "*" PrefixExp | MultiplicativeExp "/" PrefixExp | MultiplicativeExp "%" PrefixExp; PrefixExp := PostfixExp | "++" PrefixExp | "--" PrefixExp | "+" PrefixExp | "-" PrefixExp | "~" PrefixExp | "!" PrefixExp; PostfixExp := PrimaryExp | PostfixExp "++" | PostfixExp "--"; PrimaryExp := "(" AssignmentExp ")" | Number | Identifier;
Operators:
)
:
=
*=
/=
%=
+=
-=
<<=
>>=
&=
^=
|=
?
||
&&
|
^
&
==
!=
<
>
<=
>=
<<
>>
+
-
*
/
%
++
--
~
!
(
Sorry, something went wrong.
No branches or pull requests
yash-arith/src/lib.rs
yash-semantics/src/expansion/initial/arith.rs
For non-portable extensions to the arithmetic expansion semantics, see #261.
The text was updated successfully, but these errors were encountered: