MCPcopy Create free account
hub / github.com/LaBatata101/sith-language-server / TupleExpr

Class TupleExpr

crates/sith_python_ast/src/nodes.rs:2152–2159  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2150/// See also [Tuple](https://docs.python.org/3/library/ast.html#ast.Tuple)
2151#[derive(Clone, Debug, PartialEq, Eq, Hash)]
2152pub struct TupleExpr {
2153 pub range: TextRange,
2154 pub elts: Vec<Expr>,
2155 pub ctx: ContextExpr,
2156
2157 /// Whether the tuple is parenthesized in the source code.
2158 pub parenthesized: bool,
2159}
2160
2161impl From<TupleExpr> for Expr {
2162 fn from(payload: TupleExpr) -> Self {

Callers 2

as_refMethod · 0.85
fromMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected