-
Notifications
You must be signed in to change notification settings - Fork 9
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
SQLite #29
SQLite #29
Conversation
rsoeldner
commented
Nov 15, 2023
•
edited by emilypi
Loading
edited by emilypi
- To see the specific tasks where the Asana app for GitHub is being used, see below:
- https://app.asana.com/0/0/1206050198560810
0ab62c8
to
a288587
Compare
Signed-off-by: rsoeldner <[email protected]>
@@ -28,7 +28,8 @@ module Pact.Core.IR.Eval.CEK | |||
, evalWithStackFrame | |||
, emitEvent | |||
, emitCapability | |||
, guardForModuleCall) where | |||
, guardForModuleCall |
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.
Is there a place we were missing this? Or is this for testing purposes
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.
TBH I'm not sure why it's part of this PR. But indeed that export is needed. coreEmitEvent
raw builtin uses it. coreEmitEvent
is not related to this PR. Confused.
-- | | ||
-- | A SQLite implementation of the PactDb persistence abstraction. | ||
|
||
-- TODO: Consider using neat-interpolation to clean up the string literals in this module. |
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.
Personally, I do feel we should aim at minimising dependencies. So-far we use neat-interpolation
just for our test suite and I don't think it's required for this work. But I agree, we should have this comment and consider these changes in the future
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.
👍