1
1
mirror of https://github.com/github/semantic.git synced 2024-12-21 13:51:44 +03:00

s/body/list of expressions

This commit is contained in:
joshvera 2016-07-29 18:33:01 -04:00
parent 828a2163bf
commit f931031515

View File

@ -62,7 +62,7 @@ data Syntax
| Return (Maybe f)
-- | A class with an identifier, superclass, and a list of definitions.
| Class f (Maybe f) [f]
-- | A method definition with an identifier, params, and a body.
-- | A method definition with an identifier, params, and a list of expressions.
| MethodDefinition f [f] [f]
deriving (Eq, Foldable, Functor, Generic, Generic1, Mergeable, Ord, Show, Traversable)