diff options
author | Patrick Sier <pjsier@users.noreply.github.com> | 2019-08-13 03:40:17 -0500 |
---|---|---|
committer | Jakub Hampl <kopomir@gmail.com> | 2019-08-13 09:40:17 +0100 |
commit | c3496315f52ae90c9c86a2d72dd8690db67dbd04 (patch) | |
tree | 4dc046b7d0f4da9745dccd8cb898500eec598c4a /style-generator/src/MyElm | |
parent | 09249b8f3e88e70fc78a7d1f8b91e89c5962661b (diff) |
Uses Bool instead of Expression for visibility (#51)
Diffstat (limited to 'style-generator/src/MyElm')
-rw-r--r-- | style-generator/src/MyElm/Syntax.elm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/style-generator/src/MyElm/Syntax.elm b/style-generator/src/MyElm/Syntax.elm index 7b99915..b207d17 100644 --- a/style-generator/src/MyElm/Syntax.elm +++ b/style-generator/src/MyElm/Syntax.elm @@ -1,6 +1,6 @@ module MyElm.Syntax exposing ( QualifiedName, local, valueName, typeName, constructorName - , Expression, string, float, int, list, pair, triple, call0, call1, call2, call3, call4, calln, pipe, record + , Expression, string, float, int, bool, list, pair, triple, call0, call1, call2, call3, call4, calln, pipe, record , Type, type0, type1, type2, typen, recordType, functionType, pairType, tripleType, typeVar , Declaration, variable, fun1, customType, typeAlias , build, Exposing, opaque, withConstructors, exposeFn @@ -321,6 +321,13 @@ int i = Literal (String.fromInt i) +{-| A bool literal. +-} +bool : Bool -> Expression +bool b = + Literal (if b then "True" else "False") + + {-| A list literal -} list : List Expression -> Expression |