plutus-core-1.60.0.0: Language library for Plutus Core
Safe HaskellSafe-Inferred
LanguageHaskell2010

PlutusCore.Check.Scoping

Synopsis

Documentation

data Stays #

Staying names.

Constructors

StaysOutOfScopeVariable

An out-of-scope variable does not get renamed and hence stays.

StaysFreeVariable

A free variable does not get renamed and hence stays.

Instances

Instances details
Show Stays # 
Instance details

Defined in PlutusCore.Check.Scoping

Methods

showsPrec :: Int -> Stays -> ShowS #

show :: Stays -> String #

showList :: [Stays] -> ShowS #

Eq Stays # 
Instance details

Defined in PlutusCore.Check.Scoping

Methods

(==) :: Stays -> Stays -> Bool #

(/=) :: Stays -> Stays -> Bool #

data Disappears #

Changing names.

Constructors

DisappearsBinding

A binding gets renamed and hence the name that it binds disappears.

DisappearsVariable

A bound variable gets renamed and hence its name disappears.

Instances

Instances details
Show Disappears # 
Instance details

Defined in PlutusCore.Check.Scoping

Eq Disappears # 
Instance details

Defined in PlutusCore.Check.Scoping

data NameAction #

A name either stays or disappears.

Instances

Instances details
Show NameAction # 
Instance details

Defined in PlutusCore.Check.Scoping

Eq NameAction # 
Instance details

Defined in PlutusCore.Check.Scoping

data NameAnn #

Instances

Instances details
Show NameAnn # 
Instance details

Defined in PlutusCore.Check.Scoping

Eq NameAnn # 
Instance details

Defined in PlutusCore.Check.Scoping

Methods

(==) :: NameAnn -> NameAnn -> Bool #

(/=) :: NameAnn -> NameAnn -> Bool #

Pretty NameAnn # 
Instance details

Defined in PlutusCore.Check.Scoping

Methods

pretty :: NameAnn -> Doc ann #

prettyList :: [NameAnn] -> Doc ann #

class ToScopedName name where #

Methods

toScopedName :: name -> ScopedName #

Instances

Instances details
ToScopedName Name # 
Instance details

Defined in PlutusCore.Check.Scoping

ToScopedName TyName # 
Instance details

Defined in PlutusCore.Check.Scoping

introduceBound :: ToScopedName name => name -> NameAnn #

Annotation for a binding saying "supposed to disappear".

registerBound :: ToScopedName name => name -> NameAnn #

Annotation for a bound variable saying "supposed to disappear".

registerOutOfScope :: ToScopedName name => name -> NameAnn #

Annotation for an out-of-scope variable saying "supposed to stay out of scope".

registerFree :: ToScopedName name => name -> NameAnn #

Annotation for a free variable saying "supposed to stay free".

class Reference n t where #

Methods

referenceVia :: (forall name. ToScopedName name => name -> NameAnn) -> n -> t NameAnn -> t NameAnn #

Take a registering function, apply it to the provided name, create a type/term variable out of the resulting annotation and the original name and reference that variable in the provided type/term by prepending a constructor to it mentioning the variable.

Instances

Instances details
tyname ~ TyName => Reference TyName (Type tyname uni) # 
Instance details

Defined in PlutusCore.Core.Instance.Scoping

Methods

referenceVia :: (forall name. ToScopedName name => name -> NameAnn) -> TyName -> Type tyname uni NameAnn -> Type tyname uni NameAnn #

name ~ Name => Reference Name (Term name uni fun) # 
Instance details

Defined in UntypedPlutusCore.Core.Instance.Scoping

Methods

referenceVia :: (forall name0. ToScopedName name0 => name0 -> NameAnn) -> Name -> Term name uni fun NameAnn -> Term name uni fun NameAnn #

name ~ Name => Reference Name (Term tyname name uni fun) # 
Instance details

Defined in PlutusCore.Core.Instance.Scoping

Methods

referenceVia :: (forall name0. ToScopedName name0 => name0 -> NameAnn) -> Name -> Term tyname name uni fun NameAnn -> Term tyname name uni fun NameAnn #

tyname ~ TyName => Reference TyName (Term tyname name uni fun) # 
Instance details

Defined in PlutusCore.Core.Instance.Scoping

Methods

referenceVia :: (forall name0. ToScopedName name0 => name0 -> NameAnn) -> TyName -> Term tyname name uni fun NameAnn -> Term tyname name uni fun NameAnn #

Reference n t => Reference (NonEmpty n) t # 
Instance details

Defined in PlutusCore.Check.Scoping

Methods

referenceVia :: (forall name. ToScopedName name => name -> NameAnn) -> NonEmpty n -> t NameAnn -> t NameAnn #

Reference n t => Reference [n] t # 
Instance details

Defined in PlutusCore.Check.Scoping

Methods

referenceVia :: (forall name. ToScopedName name => name -> NameAnn) -> [n] -> t NameAnn -> t NameAnn #

referenceBound :: Reference n t => n -> t NameAnn -> t NameAnn #

Reference the provided variable in the provided type/term as an in-scope one.

referenceOutOfScope :: Reference n t => n -> t NameAnn -> t NameAnn #

Reference the provided variable in the provided type/term as an out-of-scope one.

newtype ScopeInfo #

A ScopeInfo is a set of ScopedNames for each of the ScopeEntry. If a ScopeEntry is not present in the map, the corresponding set of ScopeNames is considered to be empty.

Instances

Instances details
Show ScopeInfo # 
Instance details

Defined in PlutusCore.Check.Scoping

to :: ScopeEntry -> ScopeInfo -> Set ScopedName #

Extract the set stored in the provided ScopeInfo at the provided ScopeEntry.

checkEmptyOn :: (Set ScopedName -> Set ScopedName -> Set ScopedName) -> (Set ScopedName -> Set ScopedName -> ScopeError) -> Set ScopedName -> Set ScopedName -> Either ScopeError () #

Check if a set is empty and report an error with the set embedded in it otherwise.

mergeScopeInfo :: ScopeInfo -> ScopeInfo -> Either ScopeError ScopeInfo #

Merge two ScopeInfos checking that binders in them do not intersect along the way.

data BindingRemoval #

Whether it's OK if the pass removes bindings. A renamer isn't supposed to do that, but for example an inliner may do it, since it's basically the entire point of an inliner.

Instances

Instances details
Show BindingRemoval # 
Instance details

Defined in PlutusCore.Check.Scoping

Eq BindingRemoval # 
Instance details

Defined in PlutusCore.Check.Scoping

class EstablishScoping t where #

Methods

establishScoping :: t ann -> Quote (t NameAnn) #

Traverse a t freshening every name (both at the binding and the use sites) and annotating the freshened names with either DisappearsBinding or StaysFreeVariable depending on whether the name occurs at the binding or the use site.

In addition to that every binder should be decorated with one out-of-scope variable (annotated with StaysOutOfScopeVariable) and one in-scope one (annotated with DisappearsVariable).

Note that no original name occurring in t should survive this procedure (and hence we don't care if any of the freshened names clashes with an original one as all original ones are supposed to be gone).

How to provide an implementation:

  1. handle bindings with 'freshen*Name' + establishScopingBinder (or similar)
  2. handle variables with 'freshen*Name' + registerFree
  3. everything else is direct recursion + Applicative stuff

Instances

Instances details
EstablishScoping Kind # 
Instance details

Defined in PlutusCore.Core.Instance.Scoping

EstablishScoping (Proxy :: Type -> Type) # 
Instance details

Defined in PlutusCore.Check.Scoping

tyname ~ TyName => EstablishScoping (Type tyname uni) # 
Instance details

Defined in PlutusCore.Core.Instance.Scoping

Methods

establishScoping :: Type tyname uni ann -> Quote (Type tyname uni NameAnn) #

name ~ Name => EstablishScoping (Program name uni fun) # 
Instance details

Defined in UntypedPlutusCore.Core.Instance.Scoping

Methods

establishScoping :: Program name uni fun ann -> Quote (Program name uni fun NameAnn) #

name ~ Name => EstablishScoping (Term name uni fun) # 
Instance details

Defined in UntypedPlutusCore.Core.Instance.Scoping

Methods

establishScoping :: Term name uni fun ann -> Quote (Term name uni fun NameAnn) #

(tyname ~ TyName, name ~ Name) => EstablishScoping (Program tyname name uni fun) # 
Instance details

Defined in PlutusCore.Core.Instance.Scoping

Methods

establishScoping :: Program tyname name uni fun ann -> Quote (Program tyname name uni fun NameAnn) #

(tyname ~ TyName, name ~ Name) => EstablishScoping (Term tyname name uni fun) # 
Instance details

Defined in PlutusCore.Core.Instance.Scoping

Methods

establishScoping :: Term tyname name uni fun ann -> Quote (Term tyname name uni fun NameAnn) #

class CollectScopeInfo t where #

Methods

collectScopeInfo :: t NameAnn -> ScopeErrorOrInfo #

Collect scoping information after scoping was established and renaming was performed.

How to provide an implementation:

  1. handle names (both bindings and variables) with handleSname
  2. everything else is direct recursion + Monoid stuff

Instances

Instances details
CollectScopeInfo Kind # 
Instance details

Defined in PlutusCore.Core.Instance.Scoping

CollectScopeInfo (Proxy :: Type -> Type) # 
Instance details

Defined in PlutusCore.Check.Scoping

tyname ~ TyName => CollectScopeInfo (Type tyname uni) # 
Instance details

Defined in PlutusCore.Core.Instance.Scoping

name ~ Name => CollectScopeInfo (Program name uni fun) # 
Instance details

Defined in UntypedPlutusCore.Core.Instance.Scoping

name ~ Name => CollectScopeInfo (Term name uni fun) # 
Instance details

Defined in UntypedPlutusCore.Core.Instance.Scoping

Methods

collectScopeInfo :: Term name uni fun NameAnn -> ScopeErrorOrInfo #

(tyname ~ TyName, name ~ Name) => CollectScopeInfo (Program tyname name uni fun) # 
Instance details

Defined in PlutusCore.Core.Instance.Scoping

Methods

collectScopeInfo :: Program tyname name uni fun NameAnn -> ScopeErrorOrInfo #

(tyname ~ TyName, name ~ Name) => CollectScopeInfo (Term tyname name uni fun) # 
Instance details

Defined in PlutusCore.Core.Instance.Scoping

Methods

collectScopeInfo :: Term tyname name uni fun NameAnn -> ScopeErrorOrInfo #

establishScopingBinder :: (Reference name value, ToScopedName name, EstablishScoping sort, EstablishScoping value) => (NameAnn -> name -> sort NameAnn -> value NameAnn -> value NameAnn) -> name -> sort ann -> value ann -> Quote (value NameAnn) #

Take a constructor for a binder, a name bound by it, a sort (kind/type), a value of that sort (type/term) and call establishScoping on both the sort and its value and reassemble the original binder with the annotated sort and its value, but also decorate the reassembled binder with one out-of-scope variable and one in-scope one.

data ScopeError #

Every kind of error thrown by the scope checking machinery at different stages.

Instances

Instances details
Show ScopeError # 
Instance details

Defined in PlutusCore.Check.Scoping

Pretty ScopeError # 
Instance details

Defined in PlutusCore.Check.Scoping

Methods

pretty :: ScopeError -> Doc ann #

prettyList :: [ScopeError] -> Doc ann #

overrideSname :: ScopeEntry -> ScopedName -> ScopeInfo -> ScopeInfo #

Override the set at the provided ScopeEntry to contain only the provided ScopedName.

applyStays :: Stays -> ScopedName -> ScopeInfo #

Use a Stays to handle an unchanged old name.

applyDisappears :: Disappears -> ScopedName -> ScopedName -> ScopeInfo #

Use a Disappears to handle differing old and new names.

applyNameAction :: NameAction -> ScopedName -> ScopedName -> Either ScopeError ScopeInfo #

Use a NameAction to handle an old and a new name.

handleSname :: ToScopedName name => NameAnn -> name -> ScopeErrorOrInfo #

Use a NameAnn to handle a new name.

symmetricDifference :: Ord a => Set a -> Set a -> Set a #

checkScopeInfo :: BindingRemoval -> ScopeInfo -> Either ScopeError () #

Check that each kind of Set from ScopeInfo relates to all other ones in a certain way. We start with these three relations that are based on the assumption that for each binder we add at least one out-of-scope variable and at least one in-scope one:

  1. disappeared bindings should be the same as stayed out of scope variables (ensures that old bindings disappear via renaming and not via removal)
  2. disappeared bindings should be the same as disappeared variables (ensures that old names consistently disappear at the binding and use sites)
  3. appeared bindings should be the same as appeared variables (ensures that new names consistently appear at the binding and use sites)

Once we've ensured all of that, we're left with only three sets and 3C2 equals 3, so we only need to consider three more relations:

  1. disappeared bindings should not intersect with free variables (an internal sanity check)
  2. appeared bindings should not intersect with disappeared bindings
  3. appeared bindings should not intersect with free variables

The last two ensure that no new name has an old name's unique.

data ScopeCheckError t #

The type of errors that the scope checking machinery returns.

Constructors

ScopeCheckError 

Fields

Instances

Instances details
PrettyBy config (t NameAnn) => PrettyBy config (ScopeCheckError t) # 
Instance details

Defined in PlutusCore.Check.Scoping

Methods

prettyBy :: config -> ScopeCheckError t -> Doc ann #

prettyListBy :: config -> [ScopeCheckError t] -> Doc ann #

Show (t NameAnn) => Show (ScopeCheckError t) # 
Instance details

Defined in PlutusCore.Check.Scoping

checkRespectsScoping #

Arguments

:: Scoping t 
=> BindingRemoval 
-> (t NameAnn -> t NameAnn)

For preparation before running the scoping tests. Commonly, either runQuote . rename or id.

-> (t NameAnn -> t NameAnn)

The runner of the pass.

-> t ann 
-> Either (ScopeCheckError t) () 

Check if a pass respects scoping.

Returns the thing that the scoping tests run on, the result of the pass and the scope checking outcome, respectively.