makeNode method
Implementation
SourceNode makeNode(SourceNode? parent, Accessor step, Match? match) {
step.resolve(parent?.accessor.type ?? type, false);
return SourceNode(accessor: step, parent: parent, match: match);
}
SourceNode makeNode(SourceNode? parent, Accessor step, Match? match) {
step.resolve(parent?.accessor.type ?? type, false);
return SourceNode(accessor: step, parent: parent, match: match);
}