Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AstNode.astParent is not set for ast root - mark that in return type #2712

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ class AstNodeMethods(val node: AstNode) extends AnyVal with NodeExtension {
})
}

def astParent: AstNode =
node._astIn.onlyChecked.asInstanceOf[AstNode]
def astParent: Option[AstNode] =
node._astIn.headOption.map(_.asInstanceOf[AstNode])

/** Direct children of node in the AST. Siblings are ordered by their `order` fields
*/
Expand Down