Use kernelConstants.

This commit is contained in:
Dillon Kearns 2021-10-07 11:36:43 -07:00
parent c91b01d5a4
commit 49ce1d998b

View File

@ -24,35 +24,10 @@ import Json.Encode
import Test.Html.Internal.ElmHtml.Constants as Constants exposing (..) import Test.Html.Internal.ElmHtml.Constants as Constants exposing (..)
import Test.Html.Internal.ElmHtml.Helpers exposing (..) import Test.Html.Internal.ElmHtml.Helpers exposing (..)
import Test.Html.Internal.ElmHtml.Markdown exposing (..) import Test.Html.Internal.ElmHtml.Markdown exposing (..)
import Test.Internal.KernelConstants exposing (kernelConstants)
import VirtualDom import VirtualDom
kernelConstants =
{ virtualDom =
{ nodeType = "$"
, nodeTypeText = 0
, nodeTypeKeyedNode = 2
, nodeTypeNode = 1
, nodeTypeCustom = 3
, nodeTypeTagger = 4
, nodeTypeThunk = 5
, tag = "c"
, kids = "e"
, facts = "d"
, descendantsCount = "b"
, text = "a"
, refs = "l"
, node = "k"
, tagger = "j"
, model = "g"
}
, markdown =
{ options = "a"
, markdown = "b"
}
}
{-| Type tree for representing Elm's Html {-| Type tree for representing Elm's Html
- TextTag is just a plain old bit of text. - TextTag is just a plain old bit of text.