feat: update list node parsing
This commit is contained in:
parent
ed987d468a
commit
b7ddc0f076
10 changed files with 411 additions and 242 deletions
|
|
@ -57,6 +57,12 @@ pub fn affiliated_keyword_nodes(input: Input) -> IResult<Input, Vec<GreenElement
|
|||
break;
|
||||
}
|
||||
|
||||
debug_assert!(
|
||||
i.input_len() > input_.input_len(),
|
||||
"{} > {}",
|
||||
i.input_len(),
|
||||
input_.input_len()
|
||||
);
|
||||
i = input_;
|
||||
children.push(GreenElement::Node(GreenNode::new(
|
||||
SyntaxKind::AFFILIATED_KEYWORD.into(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue