Skip to content
Closed
Changes from 1 commit
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
Prev Previous commit
Fix merge bug
  • Loading branch information
petermaxlee committed Aug 18, 2016
commit 88e727260f80819c58bb3cef3ba79d9bf86990fe
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ case class UnresolvedInlineTable(
extends LeafNode {

lazy val expressionsResolved: Boolean = rows.forall(_.forall(_.resolved))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is used only once. Lets move this code into that location.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I do want this memoized, so a lazy val is better here.

override lazy val resolved = false
override def output: Seq[Attribute] = Nil
}

Expand Down