MCPcopy Create free account
hub / github.com/astral-sh/ruff / parse_unary_expression

Method parse_unary_expression

crates/ruff_python_parser/src/parser/expression.rs:1190–1206  ·  view source on GitHub ↗

Parses a unary expression. This includes the unary arithmetic `+` and `-`, bitwise `~`, and the boolean `not` operators. # Panics If the parser isn't positioned at any of the unary operators. See:

(
        &mut self,
        op: UnaryOp,
        context: ExpressionContext,
    )

Source from the content-addressed store, hash-verified

1188 ///
1189 /// See: <https://docs.python.org/3/reference/expressions.html#unary-arithmetic-and-bitwise-operations>
1190 pub(super) fn parse_unary_expression(
1191 &mut self,
1192 op: UnaryOp,
1193 context: ExpressionContext,
1194 ) -> ast::ExprUnaryOp {
1195 let start = self.node_start();
1196 self.bump(TokenKind::from(op));
1197
1198 let operand = self.parse_binary_expression_or_higher(OperatorPrecedence::from(op), context);
1199
1200 ast::ExprUnaryOp {
1201 op,
1202 operand: Box::new(operand.expr),
1203 range: self.node_range(start),
1204 node_index: AtomicNodeIndex::NONE,
1205 }
1206 }
1207
1208 /// Parses an attribute expression.
1209 ///

Callers 2

Calls 4

node_startMethod · 0.80
node_rangeMethod · 0.80
bumpMethod · 0.45

Tested by

no test coverage detected