purescript-0.11.0: PureScript Programming Language Compiler

Safe HaskellNone
LanguageHaskell98

Language.PureScript.Ide.Filter

Description

Filters for psc-ide commands

Synopsis

Documentation

moduleFilter :: [ModuleName] -> Filter Source #

Only keeps the given Modules

prefixFilter :: Text -> Filter Source #

Only keeps Identifiers that start with the given prefix

equalityFilter :: Text -> Filter Source #

Only keeps Identifiers that are equal to the search string

applyFilters :: [Filter] -> [Module] -> [Module] Source #