mirror of
https://github.com/astral-sh/ruff.git
synced 2025-11-03 13:14:34 +00:00
Remove Int wrapper type from parser (#7577)
## Summary This is only used for the `level` field in relative imports (e.g., `from ..foo import bar`). It seems unnecessary to use a wrapper here, so this PR changes to a `u32` directly.
This commit is contained in:
parent
6c3378edb1
commit
4d6f5ff0a7
16 changed files with 75 additions and 101 deletions
|
|
@ -695,7 +695,7 @@ pub(crate) fn statement(stmt: &Stmt, checker: &mut Checker) {
|
||||||
},
|
},
|
||||||
) => {
|
) => {
|
||||||
let module = module.as_deref();
|
let module = module.as_deref();
|
||||||
let level = level.map(|level| level.to_u32());
|
let level = *level;
|
||||||
if checker.enabled(Rule::ModuleImportNotAtTopOfFile) {
|
if checker.enabled(Rule::ModuleImportNotAtTopOfFile) {
|
||||||
pycodestyle::rules::module_import_not_at_top_of_file(checker, stmt);
|
pycodestyle::rules::module_import_not_at_top_of_file(checker, stmt);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -358,7 +358,7 @@ where
|
||||||
range: _,
|
range: _,
|
||||||
}) => {
|
}) => {
|
||||||
let module = module.as_deref();
|
let module = module.as_deref();
|
||||||
let level = level.map(|level| level.to_u32());
|
let level = *level;
|
||||||
for alias in names {
|
for alias in names {
|
||||||
if let Some("__future__") = module {
|
if let Some("__future__") = module {
|
||||||
let name = alias.asname.as_ref().unwrap_or(&alias.name);
|
let name = alias.asname.as_ref().unwrap_or(&alias.name);
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@ fn extract_import_map(path: &Path, package: Option<&Path>, blocks: &[&Block]) ->
|
||||||
level,
|
level,
|
||||||
range: _,
|
range: _,
|
||||||
}) => {
|
}) => {
|
||||||
let level = level.map_or(0, |level| level.to_usize());
|
let level = level.unwrap_or_default() as usize;
|
||||||
let module = if let Some(module) = module {
|
let module = if let Some(module) = module {
|
||||||
let module: &String = module.as_ref();
|
let module: &String = module.as_ref();
|
||||||
if level == 0 {
|
if level == 0 {
|
||||||
|
|
@ -95,6 +95,7 @@ pub(crate) fn check_imports(
|
||||||
tracker.visit_body(python_ast);
|
tracker.visit_body(python_ast);
|
||||||
tracker
|
tracker
|
||||||
};
|
};
|
||||||
|
|
||||||
let blocks: Vec<&Block> = tracker.iter().collect();
|
let blocks: Vec<&Block> = tracker.iter().collect();
|
||||||
|
|
||||||
// Enforce import rules.
|
// Enforce import rules.
|
||||||
|
|
|
||||||
|
|
@ -308,7 +308,7 @@ impl<'a> Importer<'a> {
|
||||||
range: _,
|
range: _,
|
||||||
}) = stmt
|
}) = stmt
|
||||||
{
|
{
|
||||||
if level.map_or(true, |level| level.to_u32() == 0)
|
if level.map_or(true, |level| level == 0)
|
||||||
&& name.as_ref().is_some_and(|name| name == module)
|
&& name.as_ref().is_some_and(|name| name == module)
|
||||||
&& names.iter().all(|alias| alias.name.as_str() != "*")
|
&& names.iter().all(|alias| alias.name.as_str() != "*")
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
use ruff_python_ast::{self as ast, Identifier, Int, Stmt};
|
use ruff_python_ast::{self as ast, Identifier, Stmt};
|
||||||
use ruff_text_size::{Ranged, TextRange};
|
use ruff_text_size::{Ranged, TextRange};
|
||||||
|
|
||||||
use ruff_diagnostics::{AutofixKind, Diagnostic, Edit, Fix, Violation};
|
use ruff_diagnostics::{AutofixKind, Diagnostic, Edit, Fix, Violation};
|
||||||
|
|
@ -99,7 +99,7 @@ fn fix_banned_relative_import(
|
||||||
TextRange::default(),
|
TextRange::default(),
|
||||||
)),
|
)),
|
||||||
names: names.clone(),
|
names: names.clone(),
|
||||||
level: Some(Int::new(0)),
|
level: Some(0),
|
||||||
range: TextRange::default(),
|
range: TextRange::default(),
|
||||||
};
|
};
|
||||||
let content = generator.stmt(&node.into());
|
let content = generator.stmt(&node.into());
|
||||||
|
|
|
||||||
|
|
@ -118,7 +118,7 @@ pub(crate) fn annotate_imports<'a>(
|
||||||
AnnotatedImport::ImportFrom {
|
AnnotatedImport::ImportFrom {
|
||||||
module: module.as_deref(),
|
module: module.as_deref(),
|
||||||
names: aliases,
|
names: aliases,
|
||||||
level: level.map(|level| level.to_u32()),
|
level: *level,
|
||||||
trailing_comma: if split_on_trailing_comma {
|
trailing_comma: if split_on_trailing_comma {
|
||||||
trailing_comma(import, locator, source_type)
|
trailing_comma(import, locator, source_type)
|
||||||
} else {
|
} else {
|
||||||
|
|
|
||||||
|
|
@ -75,7 +75,7 @@ fn includes_import(stmt: &Stmt, target: &AnyImport) -> bool {
|
||||||
return false;
|
return false;
|
||||||
};
|
};
|
||||||
module.as_deref() == target.module
|
module.as_deref() == target.module
|
||||||
&& level.map(|level| level.to_u32()) == target.level
|
&& *level == target.level
|
||||||
&& names.iter().any(|alias| {
|
&& names.iter().any(|alias| {
|
||||||
&alias.name == target.name.name
|
&alias.name == target.name.name
|
||||||
&& alias.asname.as_deref() == target.name.as_name
|
&& alias.asname.as_deref() == target.name.as_name
|
||||||
|
|
@ -166,7 +166,7 @@ pub(crate) fn add_required_imports(
|
||||||
name: name.name.as_str(),
|
name: name.name.as_str(),
|
||||||
as_name: name.asname.as_deref(),
|
as_name: name.asname.as_deref(),
|
||||||
},
|
},
|
||||||
level: level.map(|level| level.to_u32()),
|
level: *level,
|
||||||
}),
|
}),
|
||||||
python_ast,
|
python_ast,
|
||||||
locator,
|
locator,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
use ruff_python_ast::{self as ast, Alias, Identifier, Int, Stmt};
|
use ruff_python_ast::{self as ast, Alias, Identifier, Stmt};
|
||||||
use ruff_text_size::{Ranged, TextRange};
|
use ruff_text_size::{Ranged, TextRange};
|
||||||
|
|
||||||
use ruff_diagnostics::{AutofixKind, Diagnostic, Edit, Fix, Violation};
|
use ruff_diagnostics::{AutofixKind, Diagnostic, Edit, Fix, Violation};
|
||||||
|
|
@ -80,7 +80,7 @@ pub(crate) fn manual_from_import(
|
||||||
asname: None,
|
asname: None,
|
||||||
range: TextRange::default(),
|
range: TextRange::default(),
|
||||||
}],
|
}],
|
||||||
level: Some(Int::new(0)),
|
level: Some(0),
|
||||||
range: TextRange::default(),
|
range: TextRange::default(),
|
||||||
};
|
};
|
||||||
diagnostic.set_fix(Fix::automatic(Edit::range_replacement(
|
diagnostic.set_fix(Fix::automatic(Edit::range_replacement(
|
||||||
|
|
|
||||||
|
|
@ -71,7 +71,7 @@ pub(crate) fn deprecated_c_element_tree(checker: &mut Checker, stmt: &Stmt) {
|
||||||
level,
|
level,
|
||||||
range: _,
|
range: _,
|
||||||
}) => {
|
}) => {
|
||||||
if level.is_some_and(|level| level.to_u32() > 0) {
|
if level.is_some_and(|level| level > 0) {
|
||||||
// Ex) `import .xml.etree.cElementTree as ET`
|
// Ex) `import .xml.etree.cElementTree as ET`
|
||||||
} else if let Some(module) = module {
|
} else if let Some(module) = module {
|
||||||
if module == "xml.etree.cElementTree" {
|
if module == "xml.etree.cElementTree" {
|
||||||
|
|
|
||||||
|
|
@ -323,7 +323,7 @@ pub(crate) fn deprecated_mock_import(checker: &mut Checker, stmt: &Stmt) {
|
||||||
level,
|
level,
|
||||||
..
|
..
|
||||||
}) => {
|
}) => {
|
||||||
if level.is_some_and(|level| level.to_u32() > 0) {
|
if level.is_some_and(|level| level > 0) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1161,7 +1161,7 @@ pub struct StmtImport<'a> {
|
||||||
pub struct StmtImportFrom<'a> {
|
pub struct StmtImportFrom<'a> {
|
||||||
module: Option<&'a str>,
|
module: Option<&'a str>,
|
||||||
names: Vec<ComparableAlias<'a>>,
|
names: Vec<ComparableAlias<'a>>,
|
||||||
level: Option<ast::Int>,
|
level: Option<u32>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, PartialEq, Eq, Hash)]
|
#[derive(Debug, PartialEq, Eq, Hash)]
|
||||||
|
|
|
||||||
|
|
@ -466,7 +466,7 @@ pub struct StmtImportFrom {
|
||||||
pub range: TextRange,
|
pub range: TextRange,
|
||||||
pub module: Option<Identifier>,
|
pub module: Option<Identifier>,
|
||||||
pub names: Vec<Alias>,
|
pub names: Vec<Alias>,
|
||||||
pub level: Option<Int>,
|
pub level: Option<u32>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl From<StmtImportFrom> for Stmt {
|
impl From<StmtImportFrom> for Stmt {
|
||||||
|
|
@ -2578,35 +2578,6 @@ impl Ranged for Identifier {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Copy, Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
|
||||||
pub struct Int(u32);
|
|
||||||
|
|
||||||
impl Int {
|
|
||||||
pub fn new(i: u32) -> Self {
|
|
||||||
Self(i)
|
|
||||||
}
|
|
||||||
pub fn to_u32(&self) -> u32 {
|
|
||||||
self.0
|
|
||||||
}
|
|
||||||
pub fn to_usize(&self) -> usize {
|
|
||||||
self.0 as _
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl std::cmp::PartialEq<u32> for Int {
|
|
||||||
#[inline]
|
|
||||||
fn eq(&self, other: &u32) -> bool {
|
|
||||||
self.0 == *other
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl std::cmp::PartialEq<usize> for Int {
|
|
||||||
#[inline]
|
|
||||||
fn eq(&self, other: &usize) -> bool {
|
|
||||||
self.0 as usize == *other
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Clone, Debug, PartialEq, is_macro::Is)]
|
#[derive(Clone, Debug, PartialEq, is_macro::Is)]
|
||||||
pub enum Constant {
|
pub enum Constant {
|
||||||
None,
|
None,
|
||||||
|
|
|
||||||
|
|
@ -577,7 +577,9 @@ impl<'a> Generator<'a> {
|
||||||
statement!({
|
statement!({
|
||||||
self.p("from ");
|
self.p("from ");
|
||||||
if let Some(level) = level {
|
if let Some(level) = level {
|
||||||
self.p(&".".repeat(level.to_usize()));
|
for _ in 0..*level {
|
||||||
|
self.p(".");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if let Some(module) = module {
|
if let Some(module) = module {
|
||||||
self.p_id(module);
|
self.p_id(module);
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ impl FormatNodeRule<StmtImportFrom> for FormatStmtImportFrom {
|
||||||
} = item;
|
} = item;
|
||||||
|
|
||||||
let level_str = level
|
let level_str = level
|
||||||
.map(|level| ".".repeat(level.to_usize()))
|
.map(|level| ".".repeat(level as usize))
|
||||||
.unwrap_or(String::default());
|
.unwrap_or(String::default());
|
||||||
|
|
||||||
write!(
|
write!(
|
||||||
|
|
|
||||||
|
|
@ -253,18 +253,18 @@ ImportStatement: ast::Stmt = {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
ImportFromLocation: (Option<ast::Int>, Option<ast::Identifier>) = {
|
ImportFromLocation: (Option<u32>, Option<ast::Identifier>) = {
|
||||||
<dots: ImportDots*> <name:DottedName> => {
|
<dots: ImportDots*> <name:DottedName> => {
|
||||||
(Some(ast::Int::new(dots.iter().map(ast::Int::to_u32).sum())), Some(name))
|
(Some(dots.iter().sum()), Some(name))
|
||||||
},
|
},
|
||||||
<dots: ImportDots+> => {
|
<dots: ImportDots+> => {
|
||||||
(Some(ast::Int::new(dots.iter().map(ast::Int::to_u32).sum())), None)
|
(Some(dots.iter().sum()), None)
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
ImportDots: ast::Int = {
|
ImportDots: u32 = {
|
||||||
"..." => ast::Int::new(3),
|
"..." => 3,
|
||||||
"." => ast::Int::new(1),
|
"." => 1,
|
||||||
};
|
};
|
||||||
|
|
||||||
ImportAsNames: Vec<ast::Alias> = {
|
ImportAsNames: Vec<ast::Alias> = {
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
// auto-generated: "lalrpop 0.20.0"
|
// auto-generated: "lalrpop 0.20.0"
|
||||||
// sha3: e8f3229288c1a13387ea6041355e2d8fe9ab788fbc7229032d2de92beb675944
|
// sha3: eb535c9ae34baad8c940ef61dbbea0a7fec7baf3cd62af40837b2616f656f927
|
||||||
use num_bigint::BigInt;
|
use num_bigint::BigInt;
|
||||||
use ruff_text_size::{Ranged, TextSize};
|
use ruff_text_size::{Ranged, TextSize};
|
||||||
use ruff_python_ast::{self as ast, IpyEscapeKind};
|
use ruff_python_ast::{self as ast, IpyEscapeKind};
|
||||||
|
|
@ -117,9 +117,9 @@ mod __parse__Top {
|
||||||
Variant69(core::option::Option<(Option<(TextSize, TextSize, Option<ast::Identifier>)>, ast::Expr)>),
|
Variant69(core::option::Option<(Option<(TextSize, TextSize, Option<ast::Identifier>)>, ast::Expr)>),
|
||||||
Variant70(ast::Alias),
|
Variant70(ast::Alias),
|
||||||
Variant71(Vec<ast::Alias>),
|
Variant71(Vec<ast::Alias>),
|
||||||
Variant72(ast::Int),
|
Variant72(u32),
|
||||||
Variant73(alloc::vec::Vec<ast::Int>),
|
Variant73(alloc::vec::Vec<u32>),
|
||||||
Variant74((Option<ast::Int>, Option<ast::Identifier>)),
|
Variant74((Option<u32>, Option<ast::Identifier>)),
|
||||||
Variant75(ast::MatchCase),
|
Variant75(ast::MatchCase),
|
||||||
Variant76(alloc::vec::Vec<ast::MatchCase>),
|
Variant76(alloc::vec::Vec<ast::MatchCase>),
|
||||||
Variant77(ast::PatternKeyword),
|
Variant77(ast::PatternKeyword),
|
||||||
|
|
@ -17596,7 +17596,7 @@ mod __parse__Top {
|
||||||
fn __pop_Variant74<
|
fn __pop_Variant74<
|
||||||
>(
|
>(
|
||||||
__symbols: &mut alloc::vec::Vec<(TextSize,__Symbol<>,TextSize)>
|
__symbols: &mut alloc::vec::Vec<(TextSize,__Symbol<>,TextSize)>
|
||||||
) -> (TextSize, (Option<ast::Int>, Option<ast::Identifier>), TextSize)
|
) -> (TextSize, (Option<u32>, Option<ast::Identifier>), TextSize)
|
||||||
{
|
{
|
||||||
match __symbols.pop() {
|
match __symbols.pop() {
|
||||||
Some((__l, __Symbol::Variant74(__v), __r)) => (__l, __v, __r),
|
Some((__l, __Symbol::Variant74(__v), __r)) => (__l, __v, __r),
|
||||||
|
|
@ -17973,16 +17973,6 @@ mod __parse__Top {
|
||||||
_ => __symbol_type_mismatch()
|
_ => __symbol_type_mismatch()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
fn __pop_Variant73<
|
|
||||||
>(
|
|
||||||
__symbols: &mut alloc::vec::Vec<(TextSize,__Symbol<>,TextSize)>
|
|
||||||
) -> (TextSize, alloc::vec::Vec<ast::Int>, TextSize)
|
|
||||||
{
|
|
||||||
match __symbols.pop() {
|
|
||||||
Some((__l, __Symbol::Variant73(__v), __r)) => (__l, __v, __r),
|
|
||||||
_ => __symbol_type_mismatch()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
fn __pop_Variant76<
|
fn __pop_Variant76<
|
||||||
>(
|
>(
|
||||||
__symbols: &mut alloc::vec::Vec<(TextSize,__Symbol<>,TextSize)>
|
__symbols: &mut alloc::vec::Vec<(TextSize,__Symbol<>,TextSize)>
|
||||||
|
|
@ -18053,6 +18043,16 @@ mod __parse__Top {
|
||||||
_ => __symbol_type_mismatch()
|
_ => __symbol_type_mismatch()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
fn __pop_Variant73<
|
||||||
|
>(
|
||||||
|
__symbols: &mut alloc::vec::Vec<(TextSize,__Symbol<>,TextSize)>
|
||||||
|
) -> (TextSize, alloc::vec::Vec<u32>, TextSize)
|
||||||
|
{
|
||||||
|
match __symbols.pop() {
|
||||||
|
Some((__l, __Symbol::Variant73(__v), __r)) => (__l, __v, __r),
|
||||||
|
_ => __symbol_type_mismatch()
|
||||||
|
}
|
||||||
|
}
|
||||||
fn __pop_Variant70<
|
fn __pop_Variant70<
|
||||||
>(
|
>(
|
||||||
__symbols: &mut alloc::vec::Vec<(TextSize,__Symbol<>,TextSize)>
|
__symbols: &mut alloc::vec::Vec<(TextSize,__Symbol<>,TextSize)>
|
||||||
|
|
@ -18143,16 +18143,6 @@ mod __parse__Top {
|
||||||
_ => __symbol_type_mismatch()
|
_ => __symbol_type_mismatch()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
fn __pop_Variant72<
|
|
||||||
>(
|
|
||||||
__symbols: &mut alloc::vec::Vec<(TextSize,__Symbol<>,TextSize)>
|
|
||||||
) -> (TextSize, ast::Int, TextSize)
|
|
||||||
{
|
|
||||||
match __symbols.pop() {
|
|
||||||
Some((__l, __Symbol::Variant72(__v), __r)) => (__l, __v, __r),
|
|
||||||
_ => __symbol_type_mismatch()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
fn __pop_Variant75<
|
fn __pop_Variant75<
|
||||||
>(
|
>(
|
||||||
__symbols: &mut alloc::vec::Vec<(TextSize,__Symbol<>,TextSize)>
|
__symbols: &mut alloc::vec::Vec<(TextSize,__Symbol<>,TextSize)>
|
||||||
|
|
@ -18523,6 +18513,16 @@ mod __parse__Top {
|
||||||
_ => __symbol_type_mismatch()
|
_ => __symbol_type_mismatch()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
fn __pop_Variant72<
|
||||||
|
>(
|
||||||
|
__symbols: &mut alloc::vec::Vec<(TextSize,__Symbol<>,TextSize)>
|
||||||
|
) -> (TextSize, u32, TextSize)
|
||||||
|
{
|
||||||
|
match __symbols.pop() {
|
||||||
|
Some((__l, __Symbol::Variant72(__v), __r)) => (__l, __v, __r),
|
||||||
|
_ => __symbol_type_mismatch()
|
||||||
|
}
|
||||||
|
}
|
||||||
pub(crate) fn __reduce0<
|
pub(crate) fn __reduce0<
|
||||||
>(
|
>(
|
||||||
mode: Mode,
|
mode: Mode,
|
||||||
|
|
@ -31464,7 +31464,7 @@ fn __action61<
|
||||||
mode: Mode,
|
mode: Mode,
|
||||||
(_, location, _): (TextSize, TextSize, TextSize),
|
(_, location, _): (TextSize, TextSize, TextSize),
|
||||||
(_, _, _): (TextSize, token::Tok, TextSize),
|
(_, _, _): (TextSize, token::Tok, TextSize),
|
||||||
(_, source, _): (TextSize, (Option<ast::Int>, Option<ast::Identifier>), TextSize),
|
(_, source, _): (TextSize, (Option<u32>, Option<ast::Identifier>), TextSize),
|
||||||
(_, _, _): (TextSize, token::Tok, TextSize),
|
(_, _, _): (TextSize, token::Tok, TextSize),
|
||||||
(_, names, _): (TextSize, Vec<ast::Alias>, TextSize),
|
(_, names, _): (TextSize, Vec<ast::Alias>, TextSize),
|
||||||
(_, end_location, _): (TextSize, TextSize, TextSize),
|
(_, end_location, _): (TextSize, TextSize, TextSize),
|
||||||
|
|
@ -31488,12 +31488,12 @@ fn __action61<
|
||||||
fn __action62<
|
fn __action62<
|
||||||
>(
|
>(
|
||||||
mode: Mode,
|
mode: Mode,
|
||||||
(_, dots, _): (TextSize, alloc::vec::Vec<ast::Int>, TextSize),
|
(_, dots, _): (TextSize, alloc::vec::Vec<u32>, TextSize),
|
||||||
(_, name, _): (TextSize, ast::Identifier, TextSize),
|
(_, name, _): (TextSize, ast::Identifier, TextSize),
|
||||||
) -> (Option<ast::Int>, Option<ast::Identifier>)
|
) -> (Option<u32>, Option<ast::Identifier>)
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
(Some(ast::Int::new(dots.iter().map(ast::Int::to_u32).sum())), Some(name))
|
(Some(dots.iter().sum()), Some(name))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -31502,11 +31502,11 @@ fn __action62<
|
||||||
fn __action63<
|
fn __action63<
|
||||||
>(
|
>(
|
||||||
mode: Mode,
|
mode: Mode,
|
||||||
(_, dots, _): (TextSize, alloc::vec::Vec<ast::Int>, TextSize),
|
(_, dots, _): (TextSize, alloc::vec::Vec<u32>, TextSize),
|
||||||
) -> (Option<ast::Int>, Option<ast::Identifier>)
|
) -> (Option<u32>, Option<ast::Identifier>)
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
(Some(ast::Int::new(dots.iter().map(ast::Int::to_u32).sum())), None)
|
(Some(dots.iter().sum()), None)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -31516,9 +31516,9 @@ fn __action64<
|
||||||
>(
|
>(
|
||||||
mode: Mode,
|
mode: Mode,
|
||||||
(_, __0, _): (TextSize, token::Tok, TextSize),
|
(_, __0, _): (TextSize, token::Tok, TextSize),
|
||||||
) -> ast::Int
|
) -> u32
|
||||||
{
|
{
|
||||||
ast::Int::new(3)
|
3
|
||||||
}
|
}
|
||||||
|
|
||||||
#[allow(unused_variables)]
|
#[allow(unused_variables)]
|
||||||
|
|
@ -31527,9 +31527,9 @@ fn __action65<
|
||||||
>(
|
>(
|
||||||
mode: Mode,
|
mode: Mode,
|
||||||
(_, __0, _): (TextSize, token::Tok, TextSize),
|
(_, __0, _): (TextSize, token::Tok, TextSize),
|
||||||
) -> ast::Int
|
) -> u32
|
||||||
{
|
{
|
||||||
ast::Int::new(1)
|
1
|
||||||
}
|
}
|
||||||
|
|
||||||
#[allow(unused_variables)]
|
#[allow(unused_variables)]
|
||||||
|
|
@ -36264,8 +36264,8 @@ fn __action364<
|
||||||
fn __action365<
|
fn __action365<
|
||||||
>(
|
>(
|
||||||
mode: Mode,
|
mode: Mode,
|
||||||
(_, __0, _): (TextSize, ast::Int, TextSize),
|
(_, __0, _): (TextSize, u32, TextSize),
|
||||||
) -> alloc::vec::Vec<ast::Int>
|
) -> alloc::vec::Vec<u32>
|
||||||
{
|
{
|
||||||
alloc::vec![__0]
|
alloc::vec![__0]
|
||||||
}
|
}
|
||||||
|
|
@ -36275,9 +36275,9 @@ fn __action365<
|
||||||
fn __action366<
|
fn __action366<
|
||||||
>(
|
>(
|
||||||
mode: Mode,
|
mode: Mode,
|
||||||
(_, v, _): (TextSize, alloc::vec::Vec<ast::Int>, TextSize),
|
(_, v, _): (TextSize, alloc::vec::Vec<u32>, TextSize),
|
||||||
(_, e, _): (TextSize, ast::Int, TextSize),
|
(_, e, _): (TextSize, u32, TextSize),
|
||||||
) -> alloc::vec::Vec<ast::Int>
|
) -> alloc::vec::Vec<u32>
|
||||||
{
|
{
|
||||||
{ let mut v = v; v.push(e); v }
|
{ let mut v = v; v.push(e); v }
|
||||||
}
|
}
|
||||||
|
|
@ -36289,7 +36289,7 @@ fn __action367<
|
||||||
mode: Mode,
|
mode: Mode,
|
||||||
__lookbehind: &TextSize,
|
__lookbehind: &TextSize,
|
||||||
__lookahead: &TextSize,
|
__lookahead: &TextSize,
|
||||||
) -> alloc::vec::Vec<ast::Int>
|
) -> alloc::vec::Vec<u32>
|
||||||
{
|
{
|
||||||
alloc::vec![]
|
alloc::vec![]
|
||||||
}
|
}
|
||||||
|
|
@ -36299,8 +36299,8 @@ fn __action367<
|
||||||
fn __action368<
|
fn __action368<
|
||||||
>(
|
>(
|
||||||
mode: Mode,
|
mode: Mode,
|
||||||
(_, v, _): (TextSize, alloc::vec::Vec<ast::Int>, TextSize),
|
(_, v, _): (TextSize, alloc::vec::Vec<u32>, TextSize),
|
||||||
) -> alloc::vec::Vec<ast::Int>
|
) -> alloc::vec::Vec<u32>
|
||||||
{
|
{
|
||||||
v
|
v
|
||||||
}
|
}
|
||||||
|
|
@ -45772,7 +45772,7 @@ fn __action806<
|
||||||
>(
|
>(
|
||||||
mode: Mode,
|
mode: Mode,
|
||||||
__0: (TextSize, token::Tok, TextSize),
|
__0: (TextSize, token::Tok, TextSize),
|
||||||
__1: (TextSize, (Option<ast::Int>, Option<ast::Identifier>), TextSize),
|
__1: (TextSize, (Option<u32>, Option<ast::Identifier>), TextSize),
|
||||||
__2: (TextSize, token::Tok, TextSize),
|
__2: (TextSize, token::Tok, TextSize),
|
||||||
__3: (TextSize, Vec<ast::Alias>, TextSize),
|
__3: (TextSize, Vec<ast::Alias>, TextSize),
|
||||||
__4: (TextSize, TextSize, TextSize),
|
__4: (TextSize, TextSize, TextSize),
|
||||||
|
|
@ -59644,7 +59644,7 @@ fn __action1299<
|
||||||
>(
|
>(
|
||||||
mode: Mode,
|
mode: Mode,
|
||||||
__0: (TextSize, token::Tok, TextSize),
|
__0: (TextSize, token::Tok, TextSize),
|
||||||
__1: (TextSize, (Option<ast::Int>, Option<ast::Identifier>), TextSize),
|
__1: (TextSize, (Option<u32>, Option<ast::Identifier>), TextSize),
|
||||||
__2: (TextSize, token::Tok, TextSize),
|
__2: (TextSize, token::Tok, TextSize),
|
||||||
__3: (TextSize, Vec<ast::Alias>, TextSize),
|
__3: (TextSize, Vec<ast::Alias>, TextSize),
|
||||||
) -> ast::Stmt
|
) -> ast::Stmt
|
||||||
|
|
@ -66376,7 +66376,7 @@ fn __action1542<
|
||||||
>(
|
>(
|
||||||
mode: Mode,
|
mode: Mode,
|
||||||
__0: (TextSize, ast::Identifier, TextSize),
|
__0: (TextSize, ast::Identifier, TextSize),
|
||||||
) -> (Option<ast::Int>, Option<ast::Identifier>)
|
) -> (Option<u32>, Option<ast::Identifier>)
|
||||||
{
|
{
|
||||||
let __start0 = __0.0;
|
let __start0 = __0.0;
|
||||||
let __end0 = __0.0;
|
let __end0 = __0.0;
|
||||||
|
|
@ -66398,9 +66398,9 @@ fn __action1542<
|
||||||
fn __action1543<
|
fn __action1543<
|
||||||
>(
|
>(
|
||||||
mode: Mode,
|
mode: Mode,
|
||||||
__0: (TextSize, alloc::vec::Vec<ast::Int>, TextSize),
|
__0: (TextSize, alloc::vec::Vec<u32>, TextSize),
|
||||||
__1: (TextSize, ast::Identifier, TextSize),
|
__1: (TextSize, ast::Identifier, TextSize),
|
||||||
) -> (Option<ast::Int>, Option<ast::Identifier>)
|
) -> (Option<u32>, Option<ast::Identifier>)
|
||||||
{
|
{
|
||||||
let __start0 = __0.0;
|
let __start0 = __0.0;
|
||||||
let __end0 = __0.2;
|
let __end0 = __0.2;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue