Skip to content
  • Alan Zimmerman's avatar
    ApiAnnotations: BooleanFormula is not properly Located · f16827f8
    Alan Zimmerman authored and Ben Gamari's avatar Ben Gamari committed
    At the moment BooleanFormula is defined as
    
      data BooleanFormula a = Var a | And [BooleanFormula a]
                            | Or [BooleanFormula a]
           deriving (Eq, Data, Typeable, Functor, Foldable, Traversable)
    
    An API Annotation can only be attached to an item of the form Located a.
    
    Replace this with a properly Located version, and attach the appropriate
    API Annotations to it
    
    Updates haddock submodule.
    
    Test Plan: ./validate
    
    Reviewers: austin, bgamari
    
    Reviewed By: bgamari
    
    Subscribers: thomie, mpickering
    
    Differential Revision: https://phabricator.haskell.org/D1384
    
    GHC Trac Issues: #11017
    f16827f8