TTG: Rework and improve splices
This commit redefines the structure of Splices in the AST. We get rid of `HsSplice` which used to represent typed and untyped splices, quasi quotes, and the result of splicing either an expression, a type or a pattern. Instead we have `HsUntypedSplice` which models an untyped splice or a quasi quoter, which works in practice just like untyped splices. The `HsExpr` constructor `HsSpliceE` which used to be constructed with an `HsSplice` is split into `HsTypedSplice` and `HsUntypedSplice`. The former is directly constructed with an `HsExpr` and the latter now takes an `HsUntypedSplice`. Both `HsType` and `Pat` constructors `HsSpliceTy` and `SplicePat` now take an `HsUntypedSplice` instead of a `HsSplice` (remember only /untyped splices/ can be spliced as types or patterns). The result of splicing an expression, type, or pattern is now comfortably stored in the extension fields `XSpliceTy`, `XSplicePat`, `XUntypedSplice` as, respectively, `HsUntypedSpliceResult (HsType GhcRn)`, `HsUntypedSpliceResult (Pat GhcRn)`, and `HsUntypedSpliceResult (HsExpr GhcRn)` Overall the TTG extension points are now better used to make invalid states unrepresentable and model the progression between stages better. See Note [Lifecycle of an untyped splice, and PendingRnSplice] and Note [Lifecycle of an typed splice, and PendingTcSplice] for more details. Updates haddock submodule Fixes #21263 ------------------------- Metric Decrease: hard_hole_fits -------------------------
Showing
- compiler/GHC/Driver/Hooks.hs 1 addition, 1 deletioncompiler/GHC/Driver/Hooks.hs
- compiler/GHC/Hs/Decls.hs 4 additions, 3 deletionscompiler/GHC/Hs/Decls.hs
- compiler/GHC/Hs/Expr.hs 91 additions, 190 deletionscompiler/GHC/Hs/Expr.hs
- compiler/GHC/Hs/Expr.hs-boot 19 additions, 6 deletionscompiler/GHC/Hs/Expr.hs-boot
- compiler/GHC/Hs/Instances.hs 10 additions, 9 deletionscompiler/GHC/Hs/Instances.hs
- compiler/GHC/Hs/Pat.hs 8 additions, 3 deletionscompiler/GHC/Hs/Pat.hs
- compiler/GHC/Hs/Syn/Type.hs 5 additions, 4 deletionscompiler/GHC/Hs/Syn/Type.hs
- compiler/GHC/Hs/Type.hs 9 additions, 4 deletionscompiler/GHC/Hs/Type.hs
- compiler/GHC/Hs/Utils.hs 9 additions, 20 deletionscompiler/GHC/Hs/Utils.hs
- compiler/GHC/HsToCore/Coverage.hs 2 additions, 1 deletioncompiler/GHC/HsToCore/Coverage.hs
- compiler/GHC/HsToCore/Expr.hs 4 additions, 3 deletionscompiler/GHC/HsToCore/Expr.hs
- compiler/GHC/HsToCore/Quote.hs 21 additions, 26 deletionscompiler/GHC/HsToCore/Quote.hs
- compiler/GHC/Iface/Ext/Ast.hs 23 additions, 25 deletionscompiler/GHC/Iface/Ext/Ast.hs
- compiler/GHC/Parser.y 10 additions, 10 deletionscompiler/GHC/Parser.y
- compiler/GHC/Parser/PostProcess.hs 9 additions, 9 deletionscompiler/GHC/Parser/PostProcess.hs
- compiler/GHC/Rename/Expr.hs 3 additions, 2 deletionscompiler/GHC/Rename/Expr.hs
- compiler/GHC/Rename/Module.hs 2 additions, 2 deletionscompiler/GHC/Rename/Module.hs
- compiler/GHC/Rename/Pat.hs 6 additions, 8 deletionscompiler/GHC/Rename/Pat.hs
- compiler/GHC/Rename/Splice.hs 145 additions, 137 deletionscompiler/GHC/Rename/Splice.hs
- compiler/GHC/Rename/Splice.hs-boot 4 additions, 5 deletionscompiler/GHC/Rename/Splice.hs-boot
Loading
Please register or sign in to comment