haskell-93e9615e.js 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. import{g as r}from"./index-15e3682d.js";function o(p,i){for(var t=0;t<i.length;t++){const n=i[t];if(typeof n!="string"&&!Array.isArray(n)){for(const e in n)if(e!=="default"&&!(e in p)){const s=Object.getOwnPropertyDescriptor(n,e);s&&Object.defineProperty(p,e,s.get?s:{enumerable:!0,get:()=>n[e]})}}}return Object.freeze(Object.defineProperty(p,Symbol.toStringTag,{value:"Module"}))}var a={exports:{}};(function(p,i){ace.define("ace/snippets/haskell.snippets",["require","exports","module"],function(t,n,e){e.exports=`snippet lang
  2. {-# LANGUAGE \${1:OverloadedStrings} #-}
  3. snippet info
  4. -- |
  5. -- Module : \${1:Module.Namespace}
  6. -- Copyright : \${2:Author} \${3:2011-2012}
  7. -- License : \${4:BSD3}
  8. --
  9. -- Maintainer : \${5:email@something.com}
  10. -- Stability : \${6:experimental}
  11. -- Portability : \${7:unknown}
  12. --
  13. -- \${8:Description}
  14. --
  15. snippet import
  16. import \${1:Data.Text}
  17. snippet import2
  18. import \${1:Data.Text} (\${2:head})
  19. snippet importq
  20. import qualified \${1:Data.Text} as \${2:T}
  21. snippet inst
  22. instance \${1:Monoid} \${2:Type} where
  23. \${3}
  24. snippet type
  25. type \${1:Type} = \${2:Type}
  26. snippet data
  27. data \${1:Type} = \${2:$1} \${3:Int}
  28. snippet newtype
  29. newtype \${1:Type} = \${2:$1} \${3:Int}
  30. snippet class
  31. class \${1:Class} a where
  32. \${2}
  33. snippet module
  34. module \`substitute(substitute(expand('%:r'), '[/\\\\]','.','g'),'^\\%(\\l*\\.\\)\\?','','')\` (
  35. ) where
  36. \`expand('%') =~ 'Main' ? "\\n\\nmain = do\\n print \\"hello world\\"" : ""\`
  37. snippet const
  38. \${1:name} :: \${2:a}
  39. $1 = \${3:undefined}
  40. snippet fn
  41. \${1:fn} :: \${2:a} -> \${3:a}
  42. $1 \${4} = \${5:undefined}
  43. snippet fn2
  44. \${1:fn} :: \${2:a} -> \${3:a} -> \${4:a}
  45. $1 \${5} = \${6:undefined}
  46. snippet ap
  47. \${1:map} \${2:fn} \${3:list}
  48. snippet do
  49. do
  50. snippet λ
  51. \\\${1:x} -> \${2}
  52. snippet \\
  53. \\\${1:x} -> \${2}
  54. snippet <-
  55. \${1:a} <- \${2:m a}
  56. snippet ←
  57. \${1:a} <- \${2:m a}
  58. snippet ->
  59. \${1:m a} -> \${2:a}
  60. snippet →
  61. \${1:m a} -> \${2:a}
  62. snippet tup
  63. (\${1:a}, \${2:b})
  64. snippet tup2
  65. (\${1:a}, \${2:b}, \${3:c})
  66. snippet tup3
  67. (\${1:a}, \${2:b}, \${3:c}, \${4:d})
  68. snippet rec
  69. \${1:Record} { \${2:recFieldA} = \${3:undefined}
  70. , \${4:recFieldB} = \${5:undefined}
  71. }
  72. snippet case
  73. case \${1:something} of
  74. \${2} -> \${3}
  75. snippet let
  76. let \${1} = \${2}
  77. in \${3}
  78. snippet where
  79. where
  80. \${1:fn} = \${2:undefined}
  81. `}),ace.define("ace/snippets/haskell",["require","exports","module","ace/snippets/haskell.snippets"],function(t,n,e){n.snippetText=t("./haskell.snippets"),n.scope="haskell"}),function(){ace.require(["ace/snippets/haskell"],function(t){p&&(p.exports=t)})}()})(a);var $=a.exports;const l=r($),d=o({__proto__:null,default:l},[$]);export{d as h};