ghc-9.13: The GHC API
Safe HaskellNone
LanguageGHC2021

GHC.Runtime.Eval.Types

Synopsis

Documentation

data IcGlobalRdrEnv Source #

Essentially a GlobalRdrEnv, but with additional cached values to allow efficient re-calculation when the imports change. Fields are strict to avoid space leaks (see T4029) All operations are in GHC.Runtime.Context. See Note [icReaderEnv recalculation]

Constructors

IcGlobalRdrEnv 

Fields

data History Source #

Constructors

History 

Fields

data ExecResult Source #

Constructors

ExecComplete

Execution is complete

ExecBreak

Execution stopped at a breakpoint.

Note: ExecBreak is only returned by handleRunStatus when GHCi should definitely stop at this breakpoint. GHCi is not responsible for subsequently deciding whether to really stop here. ExecBreak always means GHCi breaks.

data SingleStep Source #

What kind of stepping are we doing?

Constructors

RunToCompletion 
RunAndLogSteps

:trace [expr]

SingleStep

:step [expr]

LocalStep

:steplocal [expr]

Fields

ModuleStep

:stepmodule [expr]

Fields

enableGhcStepMode :: SingleStep -> Bool Source #

Whether this SingleStep mode requires instructing the interpreter to step at every breakpoint.

breakHere :: SingleStep -> SrcSpan -> Bool Source #

Given a SingleStep mode and the SrcSpan of a breakpoint we hit, return True if based on the step-mode alone we should stop at this breakpoint.

In particular, this will always be False for RunToCompletion and RunAndLogSteps. We'd need further information e.g. about the user breakpoints to determine whether to break in those modes.

data ExecOptions Source #

Constructors

ExecOptions 

Fields