Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
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