mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-03 16:44:33 +00:00
Remove unused code
This commit is contained in:
parent
54e78e8fd4
commit
90f517712a
33 changed files with 24 additions and 1300 deletions
|
@ -144,7 +144,6 @@ pub struct IntroducedVariables {
|
|||
pub able: VecSet<AbleVariable>,
|
||||
/// Extension variables which should be inferred in output position.
|
||||
pub infer_ext_in_output: Vec<Variable>,
|
||||
pub host_exposed_aliases: VecMap<Symbol, Variable>,
|
||||
}
|
||||
|
||||
impl IntroducedVariables {
|
||||
|
@ -156,7 +155,6 @@ impl IntroducedVariables {
|
|||
.chain(self.named.iter().map(|nv| &nv.variable))
|
||||
.chain(self.able.iter().map(|av| &av.variable))
|
||||
.chain(self.infer_ext_in_output.iter())
|
||||
.chain(self.host_exposed_aliases.values())
|
||||
.all(|&v| v != var));
|
||||
}
|
||||
|
||||
|
@ -205,17 +203,10 @@ impl IntroducedVariables {
|
|||
self.lambda_sets.push(var);
|
||||
}
|
||||
|
||||
pub fn insert_host_exposed_alias(&mut self, symbol: Symbol, var: Variable) {
|
||||
self.debug_assert_not_already_present(var);
|
||||
self.host_exposed_aliases.insert(symbol, var);
|
||||
}
|
||||
|
||||
pub fn union(&mut self, other: &Self) {
|
||||
self.wildcards.extend(other.wildcards.iter().copied());
|
||||
self.lambda_sets.extend(other.lambda_sets.iter().copied());
|
||||
self.inferred.extend(other.inferred.iter().copied());
|
||||
self.host_exposed_aliases
|
||||
.extend(other.host_exposed_aliases.iter().map(|(k, v)| (*k, *v)));
|
||||
|
||||
self.named.extend(other.named.iter().cloned());
|
||||
self.able.extend(other.able.iter().cloned());
|
||||
|
@ -227,7 +218,6 @@ impl IntroducedVariables {
|
|||
self.wildcards.extend(other.wildcards);
|
||||
self.lambda_sets.extend(other.lambda_sets);
|
||||
self.inferred.extend(other.inferred);
|
||||
self.host_exposed_aliases.extend(other.host_exposed_aliases);
|
||||
|
||||
self.named.extend(other.named);
|
||||
self.able.extend(other.able);
|
||||
|
|
|
@ -217,7 +217,6 @@ pub fn deep_copy_type_vars_into_expr(
|
|||
deep_copy_expr_top(subs, var, expr)
|
||||
}
|
||||
|
||||
#[allow(unused)] // TODO to be removed when this is used for the derivers
|
||||
pub fn deep_copy_expr_across_subs(
|
||||
source: &mut Subs,
|
||||
target: &mut Subs,
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
mod pretty_print;
|
||||
|
||||
pub use pretty_print::pretty_print_declarations;
|
||||
pub use pretty_print::pretty_print_def;
|
||||
pub use pretty_print::pretty_write_declarations;
|
||||
pub use pretty_print::Ctx as PPCtx;
|
||||
|
|
|
@ -19,14 +19,6 @@ pub struct Ctx<'a> {
|
|||
pub print_lambda_names: bool,
|
||||
}
|
||||
|
||||
pub fn pretty_print_declarations(c: &Ctx, declarations: &Declarations) -> String {
|
||||
let f = Arena::new();
|
||||
print_declarations_help(c, &f, declarations)
|
||||
.1
|
||||
.pretty(80)
|
||||
.to_string()
|
||||
}
|
||||
|
||||
pub fn pretty_write_declarations(
|
||||
writer: &mut impl std::io::Write,
|
||||
c: &Ctx,
|
||||
|
|
|
@ -340,45 +340,12 @@ impl PendingTypeDef<'_> {
|
|||
pub enum Declaration {
|
||||
Declare(Def),
|
||||
DeclareRec(Vec<Def>, IllegalCycleMark),
|
||||
Builtin(Def),
|
||||
Expects(ExpectsOrDbgs),
|
||||
/// If we know a cycle is illegal during canonicalization.
|
||||
/// Otherwise we will try to detect this during solving; see [`IllegalCycleMark`].
|
||||
InvalidCycle(Vec<CycleEntry>),
|
||||
}
|
||||
|
||||
impl Declaration {
|
||||
pub fn def_count(&self) -> usize {
|
||||
use Declaration::*;
|
||||
match self {
|
||||
Declare(_) => 1,
|
||||
DeclareRec(defs, _) => defs.len(),
|
||||
InvalidCycle { .. } => 0,
|
||||
Builtin(_) => 0,
|
||||
Expects(_) => 0,
|
||||
}
|
||||
}
|
||||
|
||||
pub fn region(&self) -> Region {
|
||||
match self {
|
||||
Declaration::Declare(def) => def.region(),
|
||||
Declaration::DeclareRec(defs, _) => Region::span_across(
|
||||
&defs.first().unwrap().region(),
|
||||
&defs.last().unwrap().region(),
|
||||
),
|
||||
Declaration::Builtin(def) => def.region(),
|
||||
Declaration::InvalidCycle(cycles) => Region::span_across(
|
||||
&cycles.first().unwrap().expr_region,
|
||||
&cycles.last().unwrap().expr_region,
|
||||
),
|
||||
Declaration::Expects(expects) => Region::span_across(
|
||||
expects.regions.first().unwrap(),
|
||||
expects.regions.last().unwrap(),
|
||||
),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// Returns a topologically sorted sequence of alias/opaque names
|
||||
fn sort_type_defs_before_introduction(
|
||||
referenced_symbols: VecMap<Symbol, Vec<Symbol>>,
|
||||
|
@ -2805,10 +2772,6 @@ fn decl_to_let(decl: Declaration, loc_ret: Loc<Expr>) -> Loc<Expr> {
|
|||
Declaration::InvalidCycle(entries) => {
|
||||
Loc::at_zero(Expr::RuntimeError(RuntimeError::CircularDef(entries)))
|
||||
}
|
||||
Declaration::Builtin(_) => {
|
||||
// Builtins should only be added to top-level decls, not to let-exprs!
|
||||
unreachable!()
|
||||
}
|
||||
Declaration::Expects(expects) => {
|
||||
let mut loc_ret = loc_ret;
|
||||
|
||||
|
|
|
@ -34,9 +34,6 @@ pub struct Env<'a> {
|
|||
/// Symbols of values/functions which were referenced by qualified lookups.
|
||||
pub qualified_value_lookups: VecSet<Symbol>,
|
||||
|
||||
/// Symbols of types which were referenced by qualified lookups.
|
||||
pub qualified_type_lookups: VecSet<Symbol>,
|
||||
|
||||
pub top_level_symbols: VecSet<Symbol>,
|
||||
|
||||
pub home_params_record: Option<(Symbol, Variable)>,
|
||||
|
@ -77,7 +74,6 @@ impl<'a> Env<'a> {
|
|||
problems: Vec::new(),
|
||||
closures: MutMap::default(),
|
||||
qualified_value_lookups: VecSet::default(),
|
||||
qualified_type_lookups: VecSet::default(),
|
||||
tailcallable_symbol: None,
|
||||
top_level_symbols: VecSet::default(),
|
||||
home_params_record: None,
|
||||
|
@ -152,9 +148,7 @@ impl<'a> Env<'a> {
|
|||
Some(ident_id) => {
|
||||
let symbol = Symbol::new(module.id, ident_id);
|
||||
|
||||
if is_type_name {
|
||||
self.qualified_type_lookups.insert(symbol);
|
||||
} else {
|
||||
if !is_type_name {
|
||||
self.qualified_value_lookups.insert(symbol);
|
||||
}
|
||||
|
||||
|
@ -183,9 +177,7 @@ impl<'a> Env<'a> {
|
|||
Some(ident_id) => {
|
||||
let symbol = Symbol::new(module.id, ident_id);
|
||||
|
||||
if is_type_name {
|
||||
self.qualified_type_lookups.insert(symbol);
|
||||
} else {
|
||||
if !is_type_name {
|
||||
self.qualified_value_lookups.insert(symbol);
|
||||
}
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
use crate::abilities::SpecializationId;
|
||||
use crate::annotation::{freshen_opaque_def, IntroducedVariables};
|
||||
use crate::builtins::builtin_defs_map;
|
||||
use crate::def::{can_defs_with_return, Annotation, Def, DefKind};
|
||||
use crate::def::{can_defs_with_return, Annotation, Def};
|
||||
use crate::env::Env;
|
||||
use crate::num::{
|
||||
finish_parsing_base, finish_parsing_float, finish_parsing_num, float_expr_from_result,
|
||||
|
@ -344,14 +343,6 @@ pub struct ExpectLookup {
|
|||
pub ability_info: Option<SpecializationId>,
|
||||
}
|
||||
|
||||
#[derive(Clone, Copy, Debug)]
|
||||
pub struct DbgLookup {
|
||||
pub symbol: Symbol,
|
||||
pub var: Variable,
|
||||
pub region: Region,
|
||||
pub ability_info: Option<SpecializationId>,
|
||||
}
|
||||
|
||||
impl Expr {
|
||||
pub fn category(&self) -> Category {
|
||||
match self {
|
||||
|
@ -750,36 +741,6 @@ pub struct WhenBranch {
|
|||
pub redundant: RedundantMark,
|
||||
}
|
||||
|
||||
impl WhenBranch {
|
||||
pub fn pattern_region(&self) -> Region {
|
||||
Region::span_across(
|
||||
&self
|
||||
.patterns
|
||||
.first()
|
||||
.expect("when branch has no pattern?")
|
||||
.pattern
|
||||
.region,
|
||||
&self
|
||||
.patterns
|
||||
.last()
|
||||
.expect("when branch has no pattern?")
|
||||
.pattern
|
||||
.region,
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
impl WhenBranch {
|
||||
pub fn region(&self) -> Region {
|
||||
Region::across_all(
|
||||
self.patterns
|
||||
.iter()
|
||||
.map(|p| &p.pattern.region)
|
||||
.chain([self.value.region].iter()),
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
pub fn canonicalize_expr<'a>(
|
||||
env: &mut Env<'a>,
|
||||
var_store: &mut VarStore,
|
||||
|
@ -2171,446 +2132,6 @@ fn lookup_to_expr(
|
|||
}
|
||||
}
|
||||
|
||||
/// Currently uses the heuristic of "only inline if it's a builtin"
|
||||
pub fn inline_calls(var_store: &mut VarStore, expr: Expr) -> Expr {
|
||||
use Expr::*;
|
||||
|
||||
match expr {
|
||||
// Num stores the `a` variable in `Num a`. Not the same as the variable
|
||||
// stored in Int and Float below, which is strictly for better error messages
|
||||
other @ Num(..)
|
||||
| other @ Int(..)
|
||||
| other @ Float(..)
|
||||
| other @ Str { .. }
|
||||
| other @ IngestedFile(..)
|
||||
| other @ SingleQuote(..)
|
||||
| other @ RuntimeError(_)
|
||||
| other @ EmptyRecord
|
||||
| other @ RecordAccessor { .. }
|
||||
| other @ RecordUpdate { .. }
|
||||
| other @ Var(..)
|
||||
| other @ ParamsVar { .. }
|
||||
| other @ AbilityMember(..)
|
||||
| other @ RunLowLevel { .. }
|
||||
| other @ ForeignCall { .. }
|
||||
| other @ OpaqueWrapFunction(_)
|
||||
| other @ Crash { .. }
|
||||
| other @ Return { .. } => other,
|
||||
|
||||
List {
|
||||
elem_var,
|
||||
loc_elems,
|
||||
} => {
|
||||
let mut new_elems = Vec::with_capacity(loc_elems.len());
|
||||
|
||||
for loc_elem in loc_elems {
|
||||
let value = inline_calls(var_store, loc_elem.value);
|
||||
|
||||
new_elems.push(Loc {
|
||||
value,
|
||||
region: loc_elem.region,
|
||||
});
|
||||
}
|
||||
|
||||
List {
|
||||
elem_var,
|
||||
loc_elems: new_elems,
|
||||
}
|
||||
}
|
||||
// Branching
|
||||
When {
|
||||
cond_var,
|
||||
expr_var,
|
||||
region,
|
||||
loc_cond,
|
||||
branches,
|
||||
branches_cond_var,
|
||||
exhaustive,
|
||||
} => {
|
||||
let loc_cond = Box::new(Loc {
|
||||
region: loc_cond.region,
|
||||
value: inline_calls(var_store, loc_cond.value),
|
||||
});
|
||||
|
||||
let mut new_branches = Vec::with_capacity(branches.len());
|
||||
|
||||
for branch in branches {
|
||||
let value = Loc {
|
||||
value: inline_calls(var_store, branch.value.value),
|
||||
region: branch.value.region,
|
||||
};
|
||||
let guard = match branch.guard {
|
||||
Some(loc_expr) => Some(Loc {
|
||||
region: loc_expr.region,
|
||||
value: inline_calls(var_store, loc_expr.value),
|
||||
}),
|
||||
None => None,
|
||||
};
|
||||
let new_branch = WhenBranch {
|
||||
patterns: branch.patterns,
|
||||
value,
|
||||
guard,
|
||||
redundant: RedundantMark::new(var_store),
|
||||
};
|
||||
|
||||
new_branches.push(new_branch);
|
||||
}
|
||||
|
||||
When {
|
||||
cond_var,
|
||||
expr_var,
|
||||
region,
|
||||
loc_cond,
|
||||
branches: new_branches,
|
||||
branches_cond_var,
|
||||
exhaustive,
|
||||
}
|
||||
}
|
||||
If {
|
||||
cond_var,
|
||||
branch_var,
|
||||
branches,
|
||||
final_else,
|
||||
} => {
|
||||
let mut new_branches = Vec::with_capacity(branches.len());
|
||||
|
||||
for (loc_cond, loc_expr) in branches {
|
||||
let loc_cond = Loc {
|
||||
value: inline_calls(var_store, loc_cond.value),
|
||||
region: loc_cond.region,
|
||||
};
|
||||
|
||||
let loc_expr = Loc {
|
||||
value: inline_calls(var_store, loc_expr.value),
|
||||
region: loc_expr.region,
|
||||
};
|
||||
|
||||
new_branches.push((loc_cond, loc_expr));
|
||||
}
|
||||
|
||||
let final_else = Box::new(Loc {
|
||||
region: final_else.region,
|
||||
value: inline_calls(var_store, final_else.value),
|
||||
});
|
||||
|
||||
If {
|
||||
cond_var,
|
||||
branch_var,
|
||||
branches: new_branches,
|
||||
final_else,
|
||||
}
|
||||
}
|
||||
|
||||
Expect {
|
||||
loc_condition,
|
||||
loc_continuation,
|
||||
lookups_in_cond,
|
||||
} => {
|
||||
let loc_condition = Loc {
|
||||
region: loc_condition.region,
|
||||
value: inline_calls(var_store, loc_condition.value),
|
||||
};
|
||||
|
||||
let loc_continuation = Loc {
|
||||
region: loc_continuation.region,
|
||||
value: inline_calls(var_store, loc_continuation.value),
|
||||
};
|
||||
|
||||
Expect {
|
||||
loc_condition: Box::new(loc_condition),
|
||||
loc_continuation: Box::new(loc_continuation),
|
||||
lookups_in_cond,
|
||||
}
|
||||
}
|
||||
|
||||
Dbg {
|
||||
source_location,
|
||||
source,
|
||||
loc_message,
|
||||
loc_continuation,
|
||||
variable,
|
||||
symbol,
|
||||
} => {
|
||||
let loc_message = Loc {
|
||||
region: loc_message.region,
|
||||
value: inline_calls(var_store, loc_message.value),
|
||||
};
|
||||
|
||||
let loc_continuation = Loc {
|
||||
region: loc_continuation.region,
|
||||
value: inline_calls(var_store, loc_continuation.value),
|
||||
};
|
||||
|
||||
Dbg {
|
||||
source_location,
|
||||
source,
|
||||
loc_message: Box::new(loc_message),
|
||||
loc_continuation: Box::new(loc_continuation),
|
||||
variable,
|
||||
symbol,
|
||||
}
|
||||
}
|
||||
|
||||
LetRec(defs, loc_expr, mark) => {
|
||||
let mut new_defs = Vec::with_capacity(defs.len());
|
||||
|
||||
for def in defs {
|
||||
new_defs.push(Def {
|
||||
loc_pattern: def.loc_pattern,
|
||||
loc_expr: Loc {
|
||||
region: def.loc_expr.region,
|
||||
value: inline_calls(var_store, def.loc_expr.value),
|
||||
},
|
||||
expr_var: def.expr_var,
|
||||
pattern_vars: def.pattern_vars,
|
||||
annotation: def.annotation,
|
||||
kind: def.kind,
|
||||
});
|
||||
}
|
||||
|
||||
let loc_expr = Loc {
|
||||
region: loc_expr.region,
|
||||
value: inline_calls(var_store, loc_expr.value),
|
||||
};
|
||||
|
||||
LetRec(new_defs, Box::new(loc_expr), mark)
|
||||
}
|
||||
|
||||
LetNonRec(def, loc_expr) => {
|
||||
let def = Def {
|
||||
loc_pattern: def.loc_pattern,
|
||||
loc_expr: Loc {
|
||||
region: def.loc_expr.region,
|
||||
value: inline_calls(var_store, def.loc_expr.value),
|
||||
},
|
||||
expr_var: def.expr_var,
|
||||
pattern_vars: def.pattern_vars,
|
||||
annotation: def.annotation,
|
||||
kind: def.kind,
|
||||
};
|
||||
|
||||
let loc_expr = Loc {
|
||||
region: loc_expr.region,
|
||||
value: inline_calls(var_store, loc_expr.value),
|
||||
};
|
||||
|
||||
LetNonRec(Box::new(def), Box::new(loc_expr))
|
||||
}
|
||||
|
||||
Closure(ClosureData {
|
||||
function_type,
|
||||
closure_type,
|
||||
return_type,
|
||||
fx_type,
|
||||
early_returns,
|
||||
recursive,
|
||||
name,
|
||||
captured_symbols,
|
||||
arguments,
|
||||
loc_body,
|
||||
}) => {
|
||||
let loc_expr = *loc_body;
|
||||
let loc_expr = Loc {
|
||||
value: inline_calls(var_store, loc_expr.value),
|
||||
region: loc_expr.region,
|
||||
};
|
||||
|
||||
Closure(ClosureData {
|
||||
function_type,
|
||||
closure_type,
|
||||
return_type,
|
||||
fx_type,
|
||||
early_returns,
|
||||
recursive,
|
||||
name,
|
||||
captured_symbols,
|
||||
arguments,
|
||||
loc_body: Box::new(loc_expr),
|
||||
})
|
||||
}
|
||||
|
||||
Record { record_var, fields } => {
|
||||
todo!(
|
||||
"Inlining for Record with record_var {:?} and fields {:?}",
|
||||
record_var,
|
||||
fields
|
||||
);
|
||||
}
|
||||
|
||||
ImportParams(module_id, region, Some((var, expr))) => ImportParams(
|
||||
module_id,
|
||||
region,
|
||||
Some((var, Box::new(inline_calls(var_store, *expr)))),
|
||||
),
|
||||
|
||||
ImportParams(module_id, region, None) => ImportParams(module_id, region, None),
|
||||
|
||||
RecordAccess {
|
||||
record_var,
|
||||
ext_var,
|
||||
field_var,
|
||||
loc_expr,
|
||||
field,
|
||||
} => {
|
||||
todo!("Inlining for RecordAccess with record_var {:?}, ext_var {:?}, field_var {:?}, loc_expr {:?}, field {:?}", record_var, ext_var, field_var, loc_expr, field);
|
||||
}
|
||||
|
||||
Tuple { tuple_var, elems } => {
|
||||
todo!(
|
||||
"Inlining for Tuple with tuple_var {:?} and elems {:?}",
|
||||
tuple_var,
|
||||
elems
|
||||
);
|
||||
}
|
||||
|
||||
TupleAccess {
|
||||
tuple_var,
|
||||
ext_var,
|
||||
elem_var,
|
||||
loc_expr,
|
||||
index,
|
||||
} => {
|
||||
todo!("Inlining for TupleAccess with tuple_var {:?}, ext_var {:?}, elem_var {:?}, loc_expr {:?}, index {:?}", tuple_var, ext_var, elem_var, loc_expr, index);
|
||||
}
|
||||
|
||||
Tag {
|
||||
tag_union_var: variant_var,
|
||||
ext_var,
|
||||
name,
|
||||
arguments,
|
||||
} => {
|
||||
todo!(
|
||||
"Inlining for Tag with variant_var {:?}, ext_var {:?}, name {:?}, arguments {:?}",
|
||||
variant_var,
|
||||
ext_var,
|
||||
name,
|
||||
arguments
|
||||
);
|
||||
}
|
||||
|
||||
OpaqueRef {
|
||||
opaque_var,
|
||||
name,
|
||||
argument,
|
||||
specialized_def_type,
|
||||
type_arguments,
|
||||
lambda_set_variables,
|
||||
} => {
|
||||
let (var, loc_expr) = *argument;
|
||||
let argument = Box::new((
|
||||
var,
|
||||
loc_expr.map_owned(|expr| inline_calls(var_store, expr)),
|
||||
));
|
||||
|
||||
OpaqueRef {
|
||||
opaque_var,
|
||||
name,
|
||||
argument,
|
||||
specialized_def_type,
|
||||
type_arguments,
|
||||
lambda_set_variables,
|
||||
}
|
||||
}
|
||||
|
||||
ZeroArgumentTag {
|
||||
closure_name,
|
||||
variant_var,
|
||||
ext_var,
|
||||
name,
|
||||
} => {
|
||||
todo!(
|
||||
"Inlining for ZeroArgumentTag with closure_name {:?}, variant_var {:?}, ext_var {:?}, name {:?}",
|
||||
closure_name,
|
||||
variant_var,
|
||||
ext_var,
|
||||
name,
|
||||
);
|
||||
}
|
||||
|
||||
Call(boxed_tuple, args, called_via) => {
|
||||
let (fn_var, loc_expr, closure_var, expr_var, fx_var) = *boxed_tuple;
|
||||
|
||||
match loc_expr.value {
|
||||
Var(symbol, _) if symbol.is_builtin() => {
|
||||
// NOTE: This assumes builtins are not effectful!
|
||||
match builtin_defs_map(symbol, var_store) {
|
||||
Some(Def {
|
||||
loc_expr:
|
||||
Loc {
|
||||
value:
|
||||
Closure(ClosureData {
|
||||
recursive,
|
||||
arguments: params,
|
||||
loc_body: boxed_body,
|
||||
..
|
||||
}),
|
||||
..
|
||||
},
|
||||
..
|
||||
}) => {
|
||||
debug_assert_eq!(recursive, Recursive::NotRecursive);
|
||||
|
||||
// Since this is a canonicalized Expr, we should have
|
||||
// already detected any arity mismatches and replaced this
|
||||
// with a RuntimeError if there was a mismatch.
|
||||
debug_assert_eq!(params.len(), args.len());
|
||||
|
||||
// Start with the function's body as the answer.
|
||||
let mut loc_answer = *boxed_body;
|
||||
|
||||
// Wrap the body in one LetNonRec for each argument,
|
||||
// such that at the end we have all the arguments in
|
||||
// scope with the values the caller provided.
|
||||
for (
|
||||
(_param_var, _exhaustive_mark, loc_pattern),
|
||||
(expr_var, loc_expr),
|
||||
) in params.iter().cloned().zip(args.into_iter()).rev()
|
||||
{
|
||||
// TODO get the correct vars into here.
|
||||
// Not sure if param_var should be involved.
|
||||
let pattern_vars = SendMap::default();
|
||||
|
||||
let def = Def {
|
||||
loc_pattern,
|
||||
loc_expr,
|
||||
expr_var,
|
||||
pattern_vars,
|
||||
annotation: None,
|
||||
kind: DefKind::Let,
|
||||
};
|
||||
|
||||
loc_answer = Loc {
|
||||
region: Region::zero(),
|
||||
value: LetNonRec(Box::new(def), Box::new(loc_answer)),
|
||||
};
|
||||
}
|
||||
|
||||
loc_answer.value
|
||||
}
|
||||
Some(_) => {
|
||||
internal_error!("Tried to inline a non-function");
|
||||
}
|
||||
None => {
|
||||
internal_error!(
|
||||
"Tried to inline a builtin that wasn't registered: {:?}",
|
||||
symbol
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
_ => {
|
||||
// For now, we only inline calls to builtins. Leave this alone!
|
||||
Call(
|
||||
Box::new((fn_var, loc_expr, closure_var, expr_var, fx_var)),
|
||||
args,
|
||||
called_via,
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn flatten_str_literal<'a>(
|
||||
env: &mut Env<'a>,
|
||||
var_store: &mut VarStore,
|
||||
|
@ -3330,7 +2851,7 @@ impl Declarations {
|
|||
pub fn expects(&self) -> ExpectCollector {
|
||||
let mut collector = ExpectCollector {
|
||||
expects: VecMap::default(),
|
||||
dbgs: VecMap::default(),
|
||||
has_dbgs: false,
|
||||
};
|
||||
|
||||
let var = Variable::EMPTY_RECORD;
|
||||
|
@ -3652,7 +3173,7 @@ pub fn toplevel_expect_to_inline_expect_pure(mut loc_expr: Loc<Expr>) -> Loc<Exp
|
|||
|
||||
pub struct ExpectCollector {
|
||||
pub expects: VecMap<Region, Vec<ExpectLookup>>,
|
||||
pub dbgs: VecMap<Symbol, DbgLookup>,
|
||||
pub has_dbgs: bool,
|
||||
}
|
||||
|
||||
impl crate::traverse::Visitor for ExpectCollector {
|
||||
|
@ -3666,20 +3187,8 @@ impl crate::traverse::Visitor for ExpectCollector {
|
|||
self.expects
|
||||
.insert(loc_condition.region, lookups_in_cond.to_vec());
|
||||
}
|
||||
Expr::Dbg {
|
||||
loc_message,
|
||||
variable,
|
||||
symbol,
|
||||
..
|
||||
} => {
|
||||
let lookup = DbgLookup {
|
||||
symbol: *symbol,
|
||||
var: *variable,
|
||||
region: loc_message.region,
|
||||
ability_info: None,
|
||||
};
|
||||
|
||||
self.dbgs.insert(*symbol, lookup);
|
||||
Expr::Dbg { .. } => {
|
||||
self.has_dbgs = true;
|
||||
}
|
||||
_ => (),
|
||||
}
|
||||
|
|
|
@ -24,7 +24,6 @@ pub mod num;
|
|||
pub mod pattern;
|
||||
pub mod procedure;
|
||||
pub mod scope;
|
||||
pub mod string;
|
||||
pub mod suffixed;
|
||||
pub mod traverse;
|
||||
|
||||
|
|
|
@ -5,9 +5,7 @@ use crate::annotation::{canonicalize_annotation, AnnotationFor};
|
|||
use crate::def::{canonicalize_defs, report_unused_imports, Def, DefKind};
|
||||
use crate::desugar::desugar_record_destructures;
|
||||
use crate::env::{Env, FxMode};
|
||||
use crate::expr::{
|
||||
ClosureData, DbgLookup, Declarations, ExpectLookup, Expr, Output, PendingDerives,
|
||||
};
|
||||
use crate::expr::{ClosureData, Declarations, ExpectLookup, Expr, Output, PendingDerives};
|
||||
use crate::pattern::{
|
||||
canonicalize_record_destructs, BindingsFromPattern, Pattern, PermitShadows, RecordDestruct,
|
||||
};
|
||||
|
@ -137,7 +135,7 @@ pub struct Module {
|
|||
pub rigid_variables: RigidVariables,
|
||||
pub abilities_store: PendingAbilitiesStore,
|
||||
pub loc_expects: VecMap<Region, Vec<ExpectLookup>>,
|
||||
pub loc_dbgs: VecMap<Symbol, DbgLookup>,
|
||||
pub has_dbgs: bool,
|
||||
pub module_params: Option<ModuleParams>,
|
||||
}
|
||||
|
||||
|
@ -188,7 +186,7 @@ pub struct ModuleOutput {
|
|||
pub pending_derives: PendingDerives,
|
||||
pub scope: Scope,
|
||||
pub loc_expects: VecMap<Region, Vec<ExpectLookup>>,
|
||||
pub loc_dbgs: VecMap<Symbol, DbgLookup>,
|
||||
pub has_dbgs: bool,
|
||||
}
|
||||
|
||||
fn has_no_implementation(expr: &Expr) -> bool {
|
||||
|
@ -763,7 +761,7 @@ pub fn canonicalize_module_defs<'a>(
|
|||
symbols_from_requires,
|
||||
pending_derives,
|
||||
loc_expects: collected.expects,
|
||||
loc_dbgs: collected.dbgs,
|
||||
has_dbgs: collected.has_dbgs,
|
||||
exposed_symbols,
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,42 +1,5 @@
|
|||
use crate::pattern::Pattern;
|
||||
use crate::{expr::Expr, scope::SymbolLookup};
|
||||
use crate::scope::SymbolLookup;
|
||||
use roc_module::symbol::{ModuleId, Symbol};
|
||||
use roc_region::all::{Loc, Region};
|
||||
use roc_types::subs::Variable;
|
||||
|
||||
#[derive(Clone, Debug)]
|
||||
pub struct Procedure {
|
||||
pub name: Option<Box<str>>,
|
||||
pub is_self_tail_recursive: bool,
|
||||
pub definition: Region,
|
||||
pub args: Vec<Loc<Pattern>>,
|
||||
pub body: Loc<Expr>,
|
||||
pub references: References,
|
||||
pub var: Variable,
|
||||
pub ret_var: Variable,
|
||||
}
|
||||
|
||||
impl Procedure {
|
||||
pub fn new(
|
||||
definition: Region,
|
||||
args: Vec<Loc<Pattern>>,
|
||||
body: Loc<Expr>,
|
||||
references: References,
|
||||
var: Variable,
|
||||
ret_var: Variable,
|
||||
) -> Procedure {
|
||||
Procedure {
|
||||
name: None,
|
||||
is_self_tail_recursive: false,
|
||||
definition,
|
||||
args,
|
||||
body,
|
||||
references,
|
||||
var,
|
||||
ret_var,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Debug, Default, Clone, Copy)]
|
||||
struct ReferencesBitflags(u8);
|
||||
|
|
|
@ -1,446 +0,0 @@
|
|||
// use bumpalo::collections::string::String;
|
||||
// use bumpalo::collections::vec::Vec;
|
||||
use bumpalo::Bump;
|
||||
use roc_error_macros::internal_error;
|
||||
use roc_parse::ast::Expr;
|
||||
// use roc_parse::ast::{Attempting, Expr};
|
||||
// use roc_parse::ident;
|
||||
// use roc_parse::parser::{unexpected, unexpected_eof, Fail, Parser, State};
|
||||
// use roc_parse::problems::{Problem, Problems};
|
||||
// use roc_region::all::{Loc, Region};
|
||||
use roc_region::all::Region;
|
||||
// use std::char;
|
||||
// use std::iter::Peekable;
|
||||
|
||||
pub fn canonical_string_literal<'a>(_arena: &Bump, _raw: &'a str, _region: Region) -> Expr<'a> {
|
||||
internal_error!("TODO restore canonicalization");
|
||||
}
|
||||
// let mut problems = std::vec::Vec::new();
|
||||
|
||||
// // Stores the accumulated string characters
|
||||
// let mut buf = String::new_in(arena);
|
||||
|
||||
// // This caches the total string length of interpolated_pairs. Every
|
||||
// // time we add a new pair to interpolated_pairs, we increment this
|
||||
// // by the sum of whatever we parsed in order to obtain that pair.
|
||||
// let mut buf_col_offset: usize = 0;
|
||||
|
||||
// // Stores interpolated identifiers, if any.
|
||||
// let mut interpolated_pairs = Vec::new_in(arena);
|
||||
|
||||
// let mut chars = raw.chars();
|
||||
|
||||
// while let Some(ch) = chars.next() {
|
||||
// match ch {
|
||||
// // If it's a backslash, escape things.
|
||||
// '\\' => match chars.next() {
|
||||
// Some(next_ch) => {
|
||||
// if let Some(ident) = handle_escaped_char(
|
||||
// arena,
|
||||
// &state,
|
||||
// next_ch,
|
||||
// &mut chars,
|
||||
// &mut buf,
|
||||
// &mut problems,
|
||||
// )? {
|
||||
// let expr = Expr::Var(ident);
|
||||
|
||||
// // +2 for `$(` and then another +1 for `)` at the end
|
||||
// let parsed_length = buf.len() + 2 + ident.len() + 1;
|
||||
|
||||
// // Casting should always succeed in this section, because
|
||||
// // if this string literal overflowed our maximum
|
||||
// // line length, that would have already happened back
|
||||
// // in the parsing step, and we never would have reached
|
||||
// // this code. Still, debug_assert that they won't!
|
||||
// debug_assert!(buf_col_offset <= u16::MAX as usize);
|
||||
// debug_assert!(ident.len() <= u16::MAX as usize);
|
||||
// debug_assert!((parsed_length - ident.len() - 1) <= u16::MAX as usize);
|
||||
|
||||
// let start_line = state.line;
|
||||
|
||||
// // Subtract ident length and another 1 for the `)`
|
||||
// let start_col = state.column
|
||||
// + buf_col_offset as u16
|
||||
// + (parsed_length - ident.len() - 1) as u16;
|
||||
// let ident_region = Region {
|
||||
// start_line,
|
||||
// start_col,
|
||||
// end_line: start_line,
|
||||
// end_col: start_col + ident.len() as u16 - 1,
|
||||
// };
|
||||
// let loc_expr = Loc {
|
||||
// region: ident_region,
|
||||
// value: expr,
|
||||
// };
|
||||
|
||||
// // Push the accumulated string into the pairs list,
|
||||
// // along with the ident that came after it.
|
||||
// interpolated_pairs.push((buf.into_bump_str(), loc_expr));
|
||||
|
||||
// // Reset the buffer so we start working on a new string.
|
||||
// buf = String::new_in(arena);
|
||||
|
||||
// // Advance the cached offset of how many chars we've parsed,
|
||||
// // so the next time we see an interpolated ident, we can
|
||||
// // correctly calculate its region.
|
||||
// buf_col_offset += parsed_length;
|
||||
// }
|
||||
// }
|
||||
// None => {
|
||||
// problems.push(loc_char(Problem::TrailingBackslash, &state, buf.len()));
|
||||
// }
|
||||
// },
|
||||
// '\t' => {
|
||||
// // Tabs are syntax errors.
|
||||
// problems.push(loc_char(Problem::Tab, &state, buf.len()));
|
||||
// }
|
||||
// '\r' => {
|
||||
// // Carriage returns aren't allowed in string literals.
|
||||
// problems.push(loc_char(Problem::CarriageReturn, &state, buf.len()));
|
||||
// }
|
||||
// normal_char => buf.push(normal_char),
|
||||
// }
|
||||
// }
|
||||
|
||||
// // We ran out of characters; this is the end of the string!
|
||||
// if problems.is_empty() {
|
||||
// let final_str = buf.into_bump_str();
|
||||
|
||||
// if interpolated_pairs.is_empty() {
|
||||
// Expr::Str(final_str)
|
||||
// } else {
|
||||
// let tuple_ref = arena.alloc((interpolated_pairs.into_bump_slice(), final_str));
|
||||
|
||||
// Expr::InterpolatedStr(tuple_ref)
|
||||
// }
|
||||
// } else {
|
||||
// Expr::MalformedStr(problems.into_boxed_slice())
|
||||
// }
|
||||
// }
|
||||
|
||||
// fn loc_char<'a, V>(value: V, state: &State<'a>, buf_len: usize) -> Located<V> {
|
||||
// let start_line = state.line;
|
||||
// let start_col = state.column + buf_len as u16;
|
||||
// let end_line = start_line;
|
||||
// // All invalid chars should have a length of 1
|
||||
// let end_col = state.column + 1;
|
||||
|
||||
// let region = Region {
|
||||
// start_line,
|
||||
// start_col,
|
||||
// end_line,
|
||||
// end_col,
|
||||
// };
|
||||
|
||||
// Loc { region, value }
|
||||
// }
|
||||
|
||||
// fn loc_escaped_char<'a, V>(value: V, state: &State<'a>, buf_len: usize) -> Located<V> {
|
||||
// let start_line = state.line;
|
||||
// let start_col = state.column + buf_len as u16;
|
||||
// let end_line = start_line;
|
||||
// // escapes should all be 2 chars long
|
||||
// let end_col = state.column + 1;
|
||||
|
||||
// let region = Region {
|
||||
// start_line,
|
||||
// start_col,
|
||||
// end_line,
|
||||
// end_col,
|
||||
// };
|
||||
|
||||
// Loc { region, value }
|
||||
// }
|
||||
|
||||
// fn loc_escaped_unicode<'a, V>(
|
||||
// value: V,
|
||||
// state: &State<'a>,
|
||||
// buf_len: usize,
|
||||
// hex_str_len: usize,
|
||||
// ) -> Located<V> {
|
||||
// let start_line = state.line;
|
||||
// // +1 due to the `"` which precedes buf.
|
||||
// let start_col = state.column + buf_len as u16 + 1;
|
||||
// let end_line = start_line;
|
||||
// // +3 due to the `\u{` and another + 1 due to the `}`
|
||||
// // -1 to prevent overshooting because end col is inclusive.
|
||||
// let end_col = start_col + 3 + hex_str_len as u16 + 1 - 1;
|
||||
|
||||
// let region = Region {
|
||||
// start_line,
|
||||
// start_col,
|
||||
// end_line,
|
||||
// end_col,
|
||||
// };
|
||||
|
||||
// Loc { region, value }
|
||||
// }
|
||||
|
||||
// #[inline(always)]
|
||||
// fn handle_escaped_char<'a, I>(
|
||||
// arena: &'a Bump,
|
||||
// state: &State<'a>,
|
||||
// ch: char,
|
||||
// chars: &mut Peekable<I>,
|
||||
// buf: &mut String<'a>,
|
||||
// problems: &mut Problems,
|
||||
// ) -> Result<Option<&'a str>, (Fail, State<'a>)>
|
||||
// where
|
||||
// I: Iterator<Item = char>,
|
||||
// {
|
||||
// match ch {
|
||||
// '\\' => buf.push('\\'),
|
||||
// '"' => buf.push('"'),
|
||||
// 't' => buf.push('\t'),
|
||||
// 'n' => buf.push('\n'),
|
||||
// 'r' => buf.push('\r'),
|
||||
// '0' => buf.push('\0'), // We explicitly support null characters, as we
|
||||
// // can't be sure we won't receive them from Rust.
|
||||
// 'u' => handle_escaped_unicode(arena, &state, chars, buf, problems)?,
|
||||
// '(' => {
|
||||
// let ident = parse_interpolated_ident(arena, state, chars)?;
|
||||
|
||||
// return Ok(Some(ident));
|
||||
// }
|
||||
// '\t' => {
|
||||
// // Report and continue.
|
||||
// // Tabs are syntax errors, but maybe the rest of the string is fine!
|
||||
// problems.push(loc_escaped_char(Problem::Tab, &state, buf.len()));
|
||||
// }
|
||||
// '\r' => {
|
||||
// // Report and continue.
|
||||
// // Carriage returns aren't allowed in string literals,
|
||||
// // but maybe the rest of the string is fine!
|
||||
// problems.push(loc_escaped_char(Problem::CarriageReturn, &state, buf.len()));
|
||||
// }
|
||||
// '\n' => {
|
||||
// // Report and bail out.
|
||||
// // We can't safely assume where the string was supposed to end.
|
||||
// problems.push(loc_escaped_char(
|
||||
// Problem::NewlineInLiteral,
|
||||
// &state,
|
||||
// buf.len(),
|
||||
// ));
|
||||
|
||||
// return Err(unexpected_eof(
|
||||
// buf.len(),
|
||||
// Attempting::UnicodeEscape,
|
||||
// state.clone(),
|
||||
// ));
|
||||
// }
|
||||
// _ => {
|
||||
// // Report and continue.
|
||||
// // An unsupported escaped char (e.g. \q) shouldn't halt parsing.
|
||||
// problems.push(loc_escaped_char(
|
||||
// Problem::UnsupportedEscapedChar,
|
||||
// &state,
|
||||
// buf.len(),
|
||||
// ));
|
||||
// }
|
||||
// }
|
||||
|
||||
// Ok(None)
|
||||
// }
|
||||
|
||||
// #[inline(always)]
|
||||
// fn handle_escaped_unicode<'a, I>(
|
||||
// arena: &'a Bump,
|
||||
// state: &State<'a>,
|
||||
// chars: &mut Peekable<I>,
|
||||
// buf: &mut String<'a>,
|
||||
// problems: &mut Problems,
|
||||
// ) -> Result<(), (Fail, State<'a>)>
|
||||
// where
|
||||
// I: Iterator<Item = char>,
|
||||
// {
|
||||
// // \u{00A0} is how you specify a Unicode code point,
|
||||
// // so we should always see a '{' next.
|
||||
// if chars.next() != Some('{') {
|
||||
// let start_line = state.line;
|
||||
// // +1 due to the `"` which precedes buf
|
||||
// let start_col = state.column + 1 + buf.len() as u16;
|
||||
// let end_line = start_line;
|
||||
|
||||
// // All we parsed was `\u`, so end on the column after `\`'s column.
|
||||
// let end_col = start_col + 1;
|
||||
|
||||
// let region = Region {
|
||||
// start_line,
|
||||
// start_col,
|
||||
// end_line,
|
||||
// end_col,
|
||||
// };
|
||||
|
||||
// problems.push(Loc {
|
||||
// region,
|
||||
// value: Problem::NoUnicodeDigits,
|
||||
// });
|
||||
|
||||
// // The rest of the string literal might be fine. Keep parsing!
|
||||
// return Ok(());
|
||||
// }
|
||||
|
||||
// // Record the point in the string literal where we started parsing `\u`
|
||||
// let start_of_unicode = buf.len();
|
||||
|
||||
// // Stores the accumulated unicode digits
|
||||
// let mut hex_str = String::new_in(arena);
|
||||
|
||||
// while let Some(hex_char) = chars.next() {
|
||||
// match hex_char {
|
||||
// '}' => {
|
||||
// // Done! Validate and add it to the buffer.
|
||||
// match u32::from_str_radix(&hex_str, 16) {
|
||||
// Ok(code_pt) => {
|
||||
// if code_pt > 0x10FFFF {
|
||||
// let start_line = state.line;
|
||||
// // +1 due to the `"` which precedes buf
|
||||
// // +3 due to the `\u{` which precedes the hex digits
|
||||
// let start_col = state.column + 1 + buf.len() as u16 + 3;
|
||||
// let end_line = start_line;
|
||||
|
||||
// // We want to underline only the number. That's the error!
|
||||
// // -1 because we want to end on the last digit, not
|
||||
// // overshoot it.
|
||||
// let end_col = start_col + hex_str.len() as u16 - 1;
|
||||
|
||||
// let region = Region {
|
||||
// start_line,
|
||||
// start_col,
|
||||
// end_line,
|
||||
// end_col,
|
||||
// };
|
||||
|
||||
// problems.push(Loc {
|
||||
// region,
|
||||
// value: Problem::UnicodeCodePtTooLarge,
|
||||
// });
|
||||
// } else {
|
||||
// // If it all checked out, add it to
|
||||
// // the main buffer.
|
||||
// match char::from_u32(code_pt) {
|
||||
// Some(ch) => buf.push(ch),
|
||||
// None => {
|
||||
// problems.push(loc_escaped_unicode(
|
||||
// Problem::InvalidUnicodeCodePt,
|
||||
// &state,
|
||||
// start_of_unicode,
|
||||
// hex_str.len(),
|
||||
// ));
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// Err(_) => {
|
||||
// let problem = if hex_str.is_empty() {
|
||||
// Problem::NoUnicodeDigits
|
||||
// } else {
|
||||
// Problem::NonHexCharsInUnicodeCodePt
|
||||
// };
|
||||
|
||||
// problems.push(loc_escaped_unicode(
|
||||
// problem,
|
||||
// &state,
|
||||
// start_of_unicode,
|
||||
// hex_str.len(),
|
||||
// ));
|
||||
// }
|
||||
// }
|
||||
|
||||
// // We are now done processing the unicode portion of the string,
|
||||
// // so exit the loop without further advancing the iterator.
|
||||
// return Ok(());
|
||||
// }
|
||||
// '\t' => {
|
||||
// // Report and continue.
|
||||
// // Tabs are syntax errors, but maybe the rest of the string is fine!
|
||||
// problems.push(loc_escaped_unicode(
|
||||
// Problem::Tab,
|
||||
// &state,
|
||||
// start_of_unicode,
|
||||
// hex_str.len(),
|
||||
// ));
|
||||
// }
|
||||
// '\r' => {
|
||||
// // Report and continue.
|
||||
// // Carriage returns aren't allowed in string literals,
|
||||
// // but maybe the rest of the string is fine!
|
||||
// problems.push(loc_escaped_unicode(
|
||||
// Problem::CarriageReturn,
|
||||
// &state,
|
||||
// start_of_unicode,
|
||||
// hex_str.len(),
|
||||
// ));
|
||||
// }
|
||||
// '\n' => {
|
||||
// // Report and bail out.
|
||||
// // We can't safely assume where the string was supposed to end.
|
||||
// problems.push(loc_escaped_unicode(
|
||||
// Problem::NewlineInLiteral,
|
||||
// &state,
|
||||
// start_of_unicode,
|
||||
// hex_str.len(),
|
||||
// ));
|
||||
|
||||
// return Err(unexpected_eof(
|
||||
// buf.len(),
|
||||
// Attempting::UnicodeEscape,
|
||||
// state.clone(),
|
||||
// ));
|
||||
// }
|
||||
// normal_char => hex_str.push(normal_char),
|
||||
// }
|
||||
|
||||
// // If we're about to hit the end of the string, and we didn't already
|
||||
// // complete parsing a valid unicode escape sequence, this is a malformed
|
||||
// // escape sequence - it wasn't terminated!
|
||||
// if chars.peek() == Some(&'"') {
|
||||
// // Record a problem and exit the loop early, so the string literal
|
||||
// // parsing logic can consume the quote and do its job as normal.
|
||||
// let start_line = state.line;
|
||||
// // +1 due to the `"` which precedes buf.
|
||||
// let start_col = state.column + buf.len() as u16 + 1;
|
||||
// let end_line = start_line;
|
||||
// // +3 due to the `\u{`
|
||||
// // -1 to prevent overshooting because end col is inclusive.
|
||||
// let end_col = start_col + 3 + hex_str.len() as u16 - 1;
|
||||
|
||||
// let region = Region {
|
||||
// start_line,
|
||||
// start_col,
|
||||
// end_line,
|
||||
// end_col,
|
||||
// };
|
||||
|
||||
// problems.push(Loc {
|
||||
// region,
|
||||
// value: Problem::MalformedEscapedUnicode,
|
||||
// });
|
||||
|
||||
// return Ok(());
|
||||
// }
|
||||
// }
|
||||
|
||||
// Ok(())
|
||||
// }
|
||||
|
||||
// #[inline(always)]
|
||||
// fn parse_interpolated_ident<'a, I>(
|
||||
// arena: &'a Bump,
|
||||
// state: &State<'a>,
|
||||
// chars: &mut Peekable<I>,
|
||||
// ) -> Result<&'a str, (Fail, State<'a>)>
|
||||
// where
|
||||
// I: Iterator<Item = char>,
|
||||
// {
|
||||
// // This will return Err on invalid identifiers like "if"
|
||||
// let ((string, next_char), state) = ident::parse_into(arena, chars, state.clone())?;
|
||||
|
||||
// // Make sure we got a closing ) to end the interpolation.
|
||||
// match next_char {
|
||||
// Some(')') => Ok(string),
|
||||
// Some(ch) => Err(unexpected(ch, 0, state, Attempting::InterpolatedString)),
|
||||
// None => Err(unexpected_eof(0, Attempting::InterpolatedString, state)),
|
||||
// }
|
||||
// }
|
|
@ -22,10 +22,6 @@ pub enum DeclarationInfo<'a> {
|
|||
pattern: Pattern,
|
||||
annotation: Option<&'a Annotation>,
|
||||
},
|
||||
Return {
|
||||
loc_expr: &'a Loc<Expr>,
|
||||
expr_var: Variable,
|
||||
},
|
||||
Expectation {
|
||||
loc_condition: &'a Loc<Expr>,
|
||||
},
|
||||
|
@ -54,7 +50,6 @@ impl<'a> DeclarationInfo<'a> {
|
|||
loc_expr,
|
||||
..
|
||||
} => Region::span_across(&loc_symbol.region, &loc_expr.region),
|
||||
Return { loc_expr, .. } => loc_expr.region,
|
||||
Expectation { loc_condition } => loc_condition.region,
|
||||
Function {
|
||||
loc_symbol,
|
||||
|
@ -72,7 +67,6 @@ impl<'a> DeclarationInfo<'a> {
|
|||
fn var(&self) -> Variable {
|
||||
match self {
|
||||
DeclarationInfo::Value { expr_var, .. } => *expr_var,
|
||||
DeclarationInfo::Return { expr_var, .. } => *expr_var,
|
||||
DeclarationInfo::Expectation { .. } => Variable::BOOL,
|
||||
DeclarationInfo::Function { expr_var, .. } => *expr_var,
|
||||
DeclarationInfo::Destructure { expr_var, .. } => *expr_var,
|
||||
|
@ -191,9 +185,6 @@ pub fn walk_decl<V: Visitor>(visitor: &mut V, decl: DeclarationInfo<'_>) {
|
|||
Expectation { loc_condition } => {
|
||||
visitor.visit_expr(&loc_condition.value, loc_condition.region, Variable::BOOL);
|
||||
}
|
||||
Return { loc_expr, expr_var } => {
|
||||
visitor.visit_expr(&loc_expr.value, loc_expr.region, expr_var);
|
||||
}
|
||||
Function {
|
||||
loc_symbol,
|
||||
loc_body,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue