-
Notifications
You must be signed in to change notification settings - Fork 24
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
perf: Unfold variables in parallel where it is possible (fixes LNG-109 ) #656
Conversation
) | ||
} | ||
|
||
def mergeWith(inline: Inline, mode: MergeMode): Inline = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should it go to Monoid[Inline]
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
like Monoid[Inline@@MergeMode]
?
@@ -140,40 +141,76 @@ object ApplyPropertiesRawInliner extends RawInliner[ApplyPropertyRaw] with Loggi | |||
mergeMode = SeqMode | |||
) | |||
} | |||
} | |||
|
|||
case class PropertyRawWithModel(raw: PropertyRaw, model: Option[PropertyModel]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Docs please
- Should it be
private
?
No description provided.