1
1
mirror of https://github.com/github/semantic.git synced 2024-12-28 09:21:35 +03:00

Add value field to NoOp

This commit is contained in:
joshvera 2018-07-23 17:35:42 -04:00
parent 97c4fecd7b
commit 70c9da9c01
3 changed files with 3 additions and 3 deletions

View File

@ -413,7 +413,7 @@ message Let {
}
message NoOp {
PythonDiff = 1;
PythonDiff value = 1;
}
message Return {

View File

@ -395,7 +395,7 @@ message Let {
}
message NoOp {
PythonTerm = 1;
PythonTerm value = 1;
}
message Return {

View File

@ -234,7 +234,7 @@ instance Show1 Retry where liftShowsPrec = genericLiftShowsPrec
instance Evaluatable Retry
newtype NoOp a = NoOp a
newtype NoOp a = NoOp { value :: a }
deriving (Declarations1, Diffable, Eq, Foldable, FreeVariables1, Functor, Generic1, Hashable1, Mergeable, Ord, Show, ToJSONFields1, Traversable, Named1, Message1)
instance Eq1 NoOp where liftEq = genericLiftEq