daml/compiler/damlc/daml-stdlib-src/LibraryModules.daml
dylant-da 87938faaf7
DAML Views - Syntax Only (#14435)
* Point to new GHC version with viewtype and view syntax

* Make minimum modifications to erase newly generated view code

CHANGELOG_BEGIN
CHANGELOG_END

* Point to updated GHC - no longer requires viewtype/view at syntax level

* Add DA_Internal_Interface to convertTypeDef exclusion check

* Move desugared types/values for interface views into DA.Internal.Desugar

* Disable unused TypeFamilies extension in DA.Internal.Interface

* Point to updated GHC, "Remove shortViewName"

* Update to latest GHc view syntax changes

* Update GHC to merged view syntax changes
2022-07-26 16:57:51 +00:00

62 lines
1.3 KiB
Haskell

-- Copyright (c) 2022 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
-- SPDX-License-Identifier: Apache-2.0
{-# LANGUAGE CPP #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS -Wno-unused-imports -Wno-deprecations #-}
-- | HIDE
module LibraryModules where
import DA.Action
import DA.Action.State
import DA.Assert
import DA.BigNumeric
import DA.Bifunctor
import DA.Date
import DA.Either
import DA.Exception
import DA.Foldable
import DA.Functor
import DA.Internal.Any
import DA.Internal.Assert
import DA.Internal.Compatible
import DA.Internal.Date
import DA.Internal.LF
import DA.Internal.Prelude
import DA.Internal.RebindableSyntax
import DA.Internal.Record
import DA.Internal.Template
import DA.Internal.Template.Functions
import DA.Internal.Time
import DA.Internal.Exception
import DA.Internal.Interface
import DA.List.Total
import DA.List
import DA.List.BuiltinOrder
import DA.Logic
import DA.Map
import DA.Math
import DA.Maybe
import DA.Monoid
import DA.NonEmpty
import DA.Numeric
import DA.Optional
import DA.Random
import DA.Record
import DA.Semigroup
import DA.Set
import DA.Stack
import DA.Text
import DA.TextMap
import DA.Time
import DA.Traversable
import DA.Tuple
import DA.Validation
#ifdef DAML_EXPERIMENTAL
import DA.Experimental.Example
#endif
import Prelude