mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 13:59:08 +00:00
nodes without ast_node_id
This commit is contained in:
parent
bddab60e6b
commit
853badf777
21 changed files with 337 additions and 252 deletions
|
@ -24,6 +24,16 @@ pub enum MarkError {
|
|||
node_type: String,
|
||||
backtrace: Backtrace,
|
||||
},
|
||||
#[snafu(display(
|
||||
"MarkNodeIdWithoutCorrespondingASTNodeId: MarkupNode with id {} was not found in MarkIdAstIdMap, available keys are: {}.",
|
||||
node_id,
|
||||
keys_str
|
||||
))]
|
||||
MarkNodeIdWithoutCorrespondingASTNodeId {
|
||||
node_id: MarkNodeId,
|
||||
keys_str: String,
|
||||
backtrace: Backtrace,
|
||||
},
|
||||
#[snafu(display("NestedNodeMissingChild: expected to find child with id {} in Nested MarkupNode, but it was missing. Id's of the children are {:?}.", node_id, children_ids))]
|
||||
NestedNodeMissingChild {
|
||||
node_id: MarkNodeId,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue