Module come::ast::statement::expression
source · Expand description
Expressions like a + b
, used in other statements.
Re-exports§
pub use binary_operator::BinaryOperatorResult;
pub use field_access::FieldAccess;
pub use function_call::FunctionCall;
pub use in_brackets::InBrackets;
pub use integer_literal::IntegerLiteral;
pub use lvalue::LValue;
pub use rvalue::RValue;
pub use unary_operator::UnaryOperatorResult;
pub use variable_ref::VariableRef;
Modules§
- Result of a binary operator.
- Result of accessing field in a struct.
- Result of a function call.
- An expression in brackets.
- An integer literal.
- Enumeration of all expressions which can be assigned to.
- Enumeration of all expressions which has a value.
- Result of a unary operator.
- Refer to a variable.