mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 13:59:08 +00:00
Migrate type vars to snake case (Redo)
This commit is contained in:
parent
1b15896212
commit
89b7900d7a
6 changed files with 484 additions and 81 deletions
|
@ -6,7 +6,7 @@ use crate::{
|
|||
collection::Braces,
|
||||
expr::merge_spaces_conservative,
|
||||
spaces::{fmt_comments_only, fmt_spaces, fmt_spaces_no_blank_lines, NewlineAt, INDENT},
|
||||
Buf,
|
||||
Buf, MigrationFlags,
|
||||
};
|
||||
|
||||
#[derive(Copy, Clone, Debug)]
|
||||
|
@ -305,7 +305,7 @@ impl<'b> NodeInfo<'b> {
|
|||
}
|
||||
|
||||
pub trait Nodify<'a> {
|
||||
fn to_node<'b>(&'a self, arena: &'b Bump) -> NodeInfo<'b>
|
||||
fn to_node<'b>(&'a self, arena: &'b Bump, flags: MigrationFlags) -> NodeInfo<'b>
|
||||
where
|
||||
'a: 'b;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue