MCPcopy Index your code
hub / github.com/RustPython/RustPython / scan_expressions

Method scan_expressions

crates/codegen/src/symboltable.rs:1743–1752  ·  view source on GitHub ↗
(
        &mut self,
        expressions: &[ast::Expr],
        context: ExpressionContext,
    )

Source from the content-addressed store, hash-verified

1741 }
1742
1743 fn scan_expressions(
1744 &mut self,
1745 expressions: &[ast::Expr],
1746 context: ExpressionContext,
1747 ) -> SymbolTableResult {
1748 for expression in expressions {
1749 self.scan_expression(expression, context)?;
1750 }
1751 Ok(())
1752 }
1753
1754 fn scan_expression(
1755 &mut self,

Callers 3

scan_statementMethod · 0.80
scan_expressionMethod · 0.80
scan_patternMethod · 0.80

Calls 1

scan_expressionMethod · 0.80

Tested by

no test coverage detected