2020-08-05 20:31:54 +04:00
|
|
|
|
|
|
|
module AST.Completion where
|
|
|
|
|
|
|
|
import Data.Text (Text)
|
|
|
|
import qualified Data.Text as Text
|
|
|
|
import Data.Maybe (listToMaybe)
|
|
|
|
import Data.List (isSubsequenceOf, nub)
|
|
|
|
|
|
|
|
import Duplo.Tree
|
|
|
|
import Duplo.Lattice
|
|
|
|
import Duplo.Pretty
|
|
|
|
|
|
|
|
import AST.Types
|
|
|
|
import AST.Scope
|
2020-08-05 20:45:22 +04:00
|
|
|
-- import AST.Parser
|
2020-08-05 20:31:54 +04:00
|
|
|
import Range
|
|
|
|
import Product
|
|
|
|
|
2020-08-05 20:45:22 +04:00
|
|
|
-- import Debug.Trace
|
2020-08-05 20:31:54 +04:00
|
|
|
|
|
|
|
|
|
|
|
complete
|
|
|
|
:: ( Eq (Product xs)
|
|
|
|
, Modifies (Product xs)
|
|
|
|
, Contains Range xs
|
|
|
|
, Contains [ScopedDecl] xs
|
|
|
|
, Contains (Maybe Category) xs
|
|
|
|
)
|
|
|
|
=> Range
|
|
|
|
-> LIGO (Product xs)
|
|
|
|
-> Maybe [Text]
|
|
|
|
complete r tree = do
|
|
|
|
let l = spineTo (leq r . getElem) tree
|
|
|
|
word <- listToMaybe l
|
2020-08-05 20:45:22 +04:00
|
|
|
let scope = getElem (extract word)
|
|
|
|
let nameCat = getElem (extract word)
|
2020-08-05 20:31:54 +04:00
|
|
|
return
|
|
|
|
$ filter (isSubseqOf (ppToText word))
|
|
|
|
$ nub
|
|
|
|
$ map (ppToText . _sdName)
|
2020-08-05 20:45:22 +04:00
|
|
|
$ filter (fits nameCat . catFromType)
|
2020-08-05 20:31:54 +04:00
|
|
|
$ scope
|
|
|
|
|
|
|
|
isSubseqOf :: Text -> Text -> Bool
|
|
|
|
isSubseqOf l r = isSubsequenceOf (Text.unpack l) (Text.unpack r)
|
|
|
|
|
|
|
|
fits :: Maybe Category -> Category -> Bool
|
|
|
|
fits Nothing _ = True
|
|
|
|
fits (Just c) c' = c == c'
|
|
|
|
|
|
|
|
catFromType :: ScopedDecl -> Category
|
|
|
|
catFromType = maybe Variable (either (const Variable) (const Type)) . _sdType
|