firefly-compiler 0.4.78 → 0.4.79

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (133) hide show
  1. package/.hintrc +4 -4
  2. package/.vscode/settings.json +4 -4
  3. package/bin/Release.ff +153 -153
  4. package/bin/firefly.mjs +1 -1
  5. package/compiler/Builder.ff +257 -257
  6. package/compiler/Compiler.ff +227 -227
  7. package/compiler/Dependencies.ff +187 -187
  8. package/compiler/DependencyLock.ff +17 -17
  9. package/compiler/JsEmitter.ff +946 -946
  10. package/compiler/LspHook.ff +202 -202
  11. package/compiler/ModuleCache.ff +178 -178
  12. package/compiler/Workspace.ff +88 -88
  13. package/core/.firefly/include/package-lock.json +564 -394
  14. package/core/.firefly/include/package.json +5 -5
  15. package/core/.firefly/include/prepare.sh +1 -1
  16. package/core/.firefly/package.ff +2 -2
  17. package/core/Array.ff +265 -265
  18. package/core/Atomic.ff +64 -64
  19. package/core/Box.ff +7 -7
  20. package/core/BrowserSystem.ff +40 -40
  21. package/core/BuildSystem.ff +148 -148
  22. package/core/Crypto.ff +96 -96
  23. package/core/Equal.ff +36 -36
  24. package/core/HttpClient.ff +148 -148
  25. package/core/JsSystem.ff +69 -69
  26. package/core/Json.ff +434 -434
  27. package/core/List.ff +486 -486
  28. package/core/Lock.ff +144 -144
  29. package/core/NodeSystem.ff +216 -216
  30. package/core/Ordering.ff +161 -161
  31. package/core/Path.ff +401 -401
  32. package/core/Random.ff +134 -134
  33. package/core/RbMap.ff +216 -216
  34. package/core/Show.ff +43 -43
  35. package/core/SourceLocation.ff +68 -68
  36. package/core/Task.ff +141 -141
  37. package/experimental/benchmarks/ListGrab.ff +23 -23
  38. package/experimental/benchmarks/ListGrab.java +55 -55
  39. package/experimental/benchmarks/Pyrotek45.ff +30 -30
  40. package/experimental/benchmarks/Pyrotek45.java +64 -64
  41. package/experimental/bidirectional/Bidi.ff +88 -88
  42. package/experimental/random/Index.ff +53 -53
  43. package/experimental/random/Process.ff +120 -120
  44. package/experimental/random/Scrape.ff +51 -51
  45. package/experimental/random/Symbols.ff +73 -73
  46. package/experimental/random/Tensor.ff +52 -52
  47. package/experimental/random/Units.ff +36 -36
  48. package/experimental/s3/S3TestAuthorizationHeader.ff +39 -38
  49. package/experimental/s3/S3TestPut.ff +16 -15
  50. package/experimental/tests/TestJson.ff +26 -26
  51. package/firefly.sh +0 -0
  52. package/fireflysite/.firefly/package.ff +4 -4
  53. package/fireflysite/CommunityOverview.ff +20 -20
  54. package/fireflysite/CountingButtonDemo.ff +58 -58
  55. package/fireflysite/DocumentParser.ff +218 -0
  56. package/fireflysite/ExamplesOverview.ff +40 -31
  57. package/fireflysite/FrontPage.ff +360 -0
  58. package/fireflysite/Guide.ff +411 -308
  59. package/fireflysite/GuideAll.ff +21 -0
  60. package/fireflysite/GuideBaseTypes.ff +168 -0
  61. package/fireflysite/GuideControlFlow.ff +212 -0
  62. package/fireflysite/GuideIntroduction.ff +52 -69
  63. package/fireflysite/Main.ff +137 -92
  64. package/fireflysite/MatchingPasswordsDemo.ff +82 -86
  65. package/fireflysite/PackagesOverview.ff +49 -49
  66. package/fireflysite/PostgresqlDemo.ff +34 -0
  67. package/fireflysite/Styles.ff +495 -306
  68. package/fireflysite/assets/NotoSansMono-Regular.ttf +0 -0
  69. package/fireflysite/assets/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf +0 -0
  70. package/fireflysite/assets/autocomplete-small.png +0 -0
  71. package/fireflysite/assets/autocomplete.png +0 -0
  72. package/fireflysite/assets/edit-time-error.png +0 -0
  73. package/fireflysite/assets/firefly-logo-yellow.png +0 -0
  74. package/fireflysite/assets/markdown/ControlFlow.md +136 -0
  75. package/fireflysite/assets/markdown/Example.md +78 -0
  76. package/lsp/.firefly/package.ff +1 -1
  77. package/lsp/CompletionHandler.ff +828 -828
  78. package/lsp/Handler.ff +714 -714
  79. package/lsp/HoverHandler.ff +79 -79
  80. package/lsp/LanguageServer.ff +272 -272
  81. package/lsp/SignatureHelpHandler.ff +55 -55
  82. package/lsp/SymbolHandler.ff +181 -181
  83. package/lsp/TestReferences.ff +17 -17
  84. package/lsp/TestReferencesCase.ff +7 -7
  85. package/lsp/stderr.txt +1 -1
  86. package/lsp/stdout.txt +34 -34
  87. package/lux/.firefly/package.ff +1 -1
  88. package/lux/Css.ff +648 -648
  89. package/lux/CssTest.ff +48 -48
  90. package/lux/Lux.ff +487 -487
  91. package/lux/LuxEvent.ff +116 -116
  92. package/lux/Main.ff +123 -123
  93. package/lux/Main2.ff +143 -143
  94. package/output/js/ff/compiler/Builder.mjs +43 -43
  95. package/output/js/ff/compiler/Dependencies.mjs +3 -3
  96. package/output/js/ff/core/Array.mjs +59 -59
  97. package/output/js/ff/core/Atomic.mjs +36 -36
  98. package/output/js/ff/core/BrowserSystem.mjs +11 -11
  99. package/output/js/ff/core/BuildSystem.mjs +30 -30
  100. package/output/js/ff/core/Crypto.mjs +40 -40
  101. package/output/js/ff/core/HttpClient.mjs +56 -56
  102. package/output/js/ff/core/Json.mjs +147 -147
  103. package/output/js/ff/core/List.mjs +50 -50
  104. package/output/js/ff/core/Lock.mjs +97 -97
  105. package/output/js/ff/core/NodeSystem.mjs +83 -83
  106. package/output/js/ff/core/Ordering.mjs +8 -8
  107. package/output/js/ff/core/Path.mjs +231 -231
  108. package/output/js/ff/core/Random.mjs +56 -56
  109. package/output/js/ff/core/Task.mjs +31 -31
  110. package/package.json +1 -1
  111. package/rpc/.firefly/package.ff +1 -1
  112. package/rpc/Rpc.ff +70 -70
  113. package/s3/.firefly/package.ff +1 -1
  114. package/s3/S3.ff +94 -94
  115. package/unsafejs/UnsafeJs.ff +19 -19
  116. package/vscode/LICENSE.txt +21 -21
  117. package/vscode/Prepublish.ff +15 -15
  118. package/vscode/README.md +16 -16
  119. package/vscode/client/package.json +22 -22
  120. package/vscode/client/src/extension.ts +104 -104
  121. package/vscode/icons/firefly-icon.svg +10 -10
  122. package/vscode/language-configuration.json +61 -61
  123. package/vscode/package-lock.json +3623 -3623
  124. package/vscode/package.json +15 -1
  125. package/vscode/snippets.json +241 -241
  126. package/vscode/syntaxes/firefly-markdown-injection.json +45 -0
  127. package/webserver/.firefly/include/package-lock.json +22 -16
  128. package/webserver/.firefly/include/package.json +5 -5
  129. package/webserver/.firefly/package.ff +2 -2
  130. package/webserver/WebServer.ff +685 -685
  131. package/websocket/.firefly/package.ff +1 -1
  132. package/websocket/WebSocket.ff +131 -131
  133. /package/fireflysite/{firefly-logo-notext.png → assets/firefly-logo-notext.png} +0 -0
package/core/RbMap.ff CHANGED
@@ -1,216 +1,216 @@
1
- // Based on https://www.cs.kent.ac.uk/people/staff/smk/redblack/Untyped.hs
2
-
3
- data Color {
4
- R
5
- B
6
- }
7
-
8
- data RB[K, V] {
9
- E
10
- T(color: Color, left: RB[K, V], key: K, value: V, right: RB[K, V])
11
- }
12
-
13
- insert[K: Order, V](x: K, xv: V, s: RB[K, V]): RB[K, V] {
14
- function ins(s: RB[K, V]): RB[K, V] {
15
- | E => T(R, E, x, xv, E)
16
- | T(B, a, y, yv, b) => Ordering.compare(x, y).{
17
- | OrderingBefore => balance(ins(a), y, yv, b)
18
- | OrderingAfter => balance(a, y, yv, ins(b))
19
- | OrderingSame => T(B, a, x, xv, b)
20
- }
21
- | T(R, a, y, yv, b) => Ordering.compare(x, y).{
22
- | OrderingBefore => T(R, ins(a), y, yv, b)
23
- | OrderingAfter => T(R, a, y, yv, ins(b))
24
- | OrderingSame => T(R, a, x, xv, b)
25
- }
26
- }
27
-
28
- ins(s).{
29
- | E => panic("Unexpected empty tree")
30
- | T(_, a, z, zv, b) => T(B, a, z, zv, b)
31
- }
32
- }
33
-
34
- member[K: Order, V](key: K, tree: RB[K, V]): Bool {
35
- | x, E => False
36
- | x, T(_, a, y, _, b,) => Ordering.compare(x, y).{
37
- | OrderingBefore => member(x, a)
38
- | OrderingAfter => member(x, b)
39
- | OrderingSame => True
40
- }
41
- }
42
-
43
- balance[K: Order, V](tree1: RB[K, V], key: K, value: V, tree2: RB[K, V]): RB[K, V] {
44
- | T(R, a, x, xv, b), y, yv, T(R, c, z, zv, d) => T(R, T(B, a, x, xv, b), y, yv, T(B, c, z, zv, d))
45
- | T(R, T(R, a, x, xv, b), y, yv, c), z, zv, d => T(R, T(B, a, x, xv, b), y, yv, T(B, c, z, zv, d))
46
- | T(R, a, x, xv, T(R, b, y, yv, c)), z, zv, d => T(R, T(B, a, x, xv, b), y, yv, T(B, c, z, zv, d))
47
- | a, x, xv, T(R, b, y, yv, T(R, c, z, zv, d)) => T(R, T(B, a, x, xv, b), y, yv, T(B, c, z, zv, d))
48
- | a, x, xv, T(R, T(R, b, y, yv, c), z, zv, d) => T(R, T(B, a, x, xv, b), y, yv, T(B, c, z, zv, d))
49
- | a, x, xv, b => T(B, a, x, xv, b)
50
- }
51
-
52
- delete[K: Order, V](x: K, t: RB[K, V]): RB[K, V] {
53
- function del(ss: RB[K, V]): RB[K, V] {
54
- | E => E
55
- | T(_, a, y, yv, b) => Ordering.compare(x, y).{
56
- | OrderingBefore => delformLeft(a, y, yv, b)
57
- | OrderingAfter => delformRight(a, y, yv, b)
58
- | OrderingSame => app(a, b)
59
- }
60
- }
61
-
62
- function delformLeft(left: RB[K, V], key: K, value: V, right: RB[K, V]): RB[K, V] {
63
- | T(B, _, _, _, _), y, yv, b => balleft(del(left), y, yv, b)
64
- | a, y, yv, b => T(R, del(a), y, yv, b)
65
- }
66
-
67
- function delformRight(left: RB[K, V], key: K, value: V, right: RB[K, V]): RB[K, V] {
68
- | a, y, yv, T(B, _, _, _, _) => balright(a, y, yv, del(right))
69
- | a, y, yv, b => T(R, a, y, yv, del(b))
70
- }
71
-
72
- del(t).{
73
- | T(_, a, y, yv, b) => T(B, a, y, yv, b)
74
- | _ => E
75
- }
76
- }
77
-
78
- balleft[K: Order, V](tree1: RB[K, V], key: K, value: V, tree2: RB[K, V]): RB[K, V] {
79
- | T(R, a, x, xv, b), y, yv, c => T(R, T(B, a, x, xv, b), y, yv, c)
80
- | bl, x, xv, T(B, a, y, yv, b) => balance(bl, x, xv, T(R, a, y, yv, b))
81
- | bl, x, xv, T(R, T(B, a, y, yv, b), z, zv, c) => T(R, T(B, bl, x, xv, a), y, yv, (balance(b, z, zv, sub1(c))))
82
- | _, _, _, _ => panic("Unexhaustive match in balleft")
83
- }
84
-
85
- balright[K: Order, V](tree1: RB[K, V], key: K, value: V, tree2: RB[K, V]): RB[K, V] {
86
- | a, x, xv, T(R, b, y, yv, c) => T(R, a, x, xv, T(B, b, y, yv, c))
87
- | T(B, a, x, xv, b), y, yv, bl => balance(T(R, a, x, xv, b), y, yv, bl)
88
- | T(R, a, x, xv, T(B, b, y, yv, c)), z, zv, bl => T(R, balance(sub1(a), x, xv, b), y, yv, T(B, c, z, zv, bl))
89
- | _, _, _, _ => panic("Unexhaustive match in balright")
90
- }
91
-
92
- sub1[K: Order, V](tree: RB[K, V]): RB[K, V] {
93
- | T(B, a, x, xv, b) => T(R, a, x, xv, b)
94
- | _ => panic("invariance violation")
95
- }
96
-
97
- app[K: Order, V](tree1: RB[K, V], tree2: RB[K, V]): RB[K, V] {
98
- | E, b => b
99
- | a, E => a
100
- | T(R, a, x, xv, b), T(R, c, y, yv, d) =>
101
- app(b, c).{
102
- | T(R, b2, z, zv, c2) => T(R, T(R, a, x, xv, b2), z, zv, T(R, c2, y, yv, d))
103
- | bc => T(R, a, x, xv, T(R, bc, y, yv, d))
104
- }
105
- | T(B, a, x, xv, b), T(B, c, y, yv, d) =>
106
- app(b, c).{
107
- | T(R, b2, z, zv, c2) => T(R, T(B, a, x, xv, b2), z, zv, T(B, c2, y, yv, d))
108
- | bc => balleft(a, x, xv, T(B, bc, y, yv, d))
109
- }
110
- | a, T(R, b, x, xv, c) => T(R, app(a, b), x, xv, c)
111
- | T(R, a, x, xv, b), c => T(R, a, x, xv, app(b, c))
112
- }
113
-
114
- extend self[K: Order, V]: RB[K, V] {
115
-
116
- get(key: K): Option[V] {
117
- self.{
118
- | E_ => None
119
- | T(_, a, y, yv, b) => Ordering.compare(key, y).{
120
- | OrderingBefore => a.get(key)
121
- | OrderingAfter => b.get(key)
122
- | OrderingSame => Some(yv)
123
- }
124
- }
125
- }
126
-
127
- size(): Int {
128
- self.{
129
- | E => 0
130
- | T(_, l, _, _, r) => l.size() + 1 + r.size()
131
- }
132
- }
133
-
134
- pairs(): List[Pair[K, V]] {
135
- let result = [].toArray()
136
- self.each {k, v =>
137
- result.push(Pair(k, v))
138
- }
139
- result.drain()
140
- }
141
-
142
- toStream(cycle: Bool): Stream[Pair[K, V]] {
143
- mutable array = [self]
144
- function next(): Option[Pair[K, V]] {
145
- array.{
146
- | [] =>
147
- if(cycle && self.{| E => False | _ => True}) {
148
- array = [self]
149
- tailcall next()
150
- } else {
151
- None
152
- }
153
- | [E, ...tail] =>
154
- array = tail
155
- tailcall next()
156
- | [T(_, E, k, v, E), ...tail] =>
157
- array = tail
158
- Some(Pair(k, v))
159
- | [T(_, l, k, v, r), ...tail] =>
160
- array = [l, T(B, E, k, v, E), r, ...tail]
161
- tailcall next()
162
- }
163
- }
164
- Stream.new(next)
165
- }
166
-
167
- each(body: (K, V) => Unit): Unit {
168
- self.{
169
- | E =>
170
- | T(_, l, k, v, r) =>
171
- l.each(body)
172
- body(k, v)
173
- r.each(body)
174
- }
175
- }
176
-
177
- eachWhile(body: (K, V) => Bool): Bool {
178
- self.{
179
- | E =>
180
- True
181
- | T(_, l, k, v, r) =>
182
- l.eachWhile(body) &&
183
- body(k, v) &&
184
- r.eachWhile(body)
185
- }
186
- }
187
-
188
- map[K2: Order, V2](body: (K, V) => Pair[K2, V2]): RB[K2, V2] {
189
- mutable result = E
190
- self.each {k, v =>
191
- let pair = body(k, v)
192
- result = insert(pair.first, pair.second, result)
193
- }
194
- result
195
- }
196
-
197
- mapValues[V2](body: (K, V) => V2): RB[K, V2] {
198
- self.{
199
- | E => E
200
- | T(c, l, k, v, r) =>
201
- T(c, l.mapValues(body), k, body(k, v), r.mapValues(body))
202
- }
203
- }
204
-
205
- find(body: (K, V) => Bool): Option[Pair[K, V]] {
206
- mutable result = None
207
- self.eachWhile {k, v =>
208
- if(body(k, v)) {
209
- result = Some(Pair(k, v))
210
- False
211
- } else {True}
212
- }
213
- result
214
- }
215
-
216
- }
1
+ // Based on https://www.cs.kent.ac.uk/people/staff/smk/redblack/Untyped.hs
2
+
3
+ data Color {
4
+ R
5
+ B
6
+ }
7
+
8
+ data RB[K, V] {
9
+ E
10
+ T(color: Color, left: RB[K, V], key: K, value: V, right: RB[K, V])
11
+ }
12
+
13
+ insert[K: Order, V](x: K, xv: V, s: RB[K, V]): RB[K, V] {
14
+ function ins(s: RB[K, V]): RB[K, V] {
15
+ | E => T(R, E, x, xv, E)
16
+ | T(B, a, y, yv, b) => Ordering.compare(x, y).{
17
+ | OrderingBefore => balance(ins(a), y, yv, b)
18
+ | OrderingAfter => balance(a, y, yv, ins(b))
19
+ | OrderingSame => T(B, a, x, xv, b)
20
+ }
21
+ | T(R, a, y, yv, b) => Ordering.compare(x, y).{
22
+ | OrderingBefore => T(R, ins(a), y, yv, b)
23
+ | OrderingAfter => T(R, a, y, yv, ins(b))
24
+ | OrderingSame => T(R, a, x, xv, b)
25
+ }
26
+ }
27
+
28
+ ins(s).{
29
+ | E => panic("Unexpected empty tree")
30
+ | T(_, a, z, zv, b) => T(B, a, z, zv, b)
31
+ }
32
+ }
33
+
34
+ member[K: Order, V](key: K, tree: RB[K, V]): Bool {
35
+ | x, E => False
36
+ | x, T(_, a, y, _, b,) => Ordering.compare(x, y).{
37
+ | OrderingBefore => member(x, a)
38
+ | OrderingAfter => member(x, b)
39
+ | OrderingSame => True
40
+ }
41
+ }
42
+
43
+ balance[K: Order, V](tree1: RB[K, V], key: K, value: V, tree2: RB[K, V]): RB[K, V] {
44
+ | T(R, a, x, xv, b), y, yv, T(R, c, z, zv, d) => T(R, T(B, a, x, xv, b), y, yv, T(B, c, z, zv, d))
45
+ | T(R, T(R, a, x, xv, b), y, yv, c), z, zv, d => T(R, T(B, a, x, xv, b), y, yv, T(B, c, z, zv, d))
46
+ | T(R, a, x, xv, T(R, b, y, yv, c)), z, zv, d => T(R, T(B, a, x, xv, b), y, yv, T(B, c, z, zv, d))
47
+ | a, x, xv, T(R, b, y, yv, T(R, c, z, zv, d)) => T(R, T(B, a, x, xv, b), y, yv, T(B, c, z, zv, d))
48
+ | a, x, xv, T(R, T(R, b, y, yv, c), z, zv, d) => T(R, T(B, a, x, xv, b), y, yv, T(B, c, z, zv, d))
49
+ | a, x, xv, b => T(B, a, x, xv, b)
50
+ }
51
+
52
+ delete[K: Order, V](x: K, t: RB[K, V]): RB[K, V] {
53
+ function del(ss: RB[K, V]): RB[K, V] {
54
+ | E => E
55
+ | T(_, a, y, yv, b) => Ordering.compare(x, y).{
56
+ | OrderingBefore => delformLeft(a, y, yv, b)
57
+ | OrderingAfter => delformRight(a, y, yv, b)
58
+ | OrderingSame => app(a, b)
59
+ }
60
+ }
61
+
62
+ function delformLeft(left: RB[K, V], key: K, value: V, right: RB[K, V]): RB[K, V] {
63
+ | T(B, _, _, _, _), y, yv, b => balleft(del(left), y, yv, b)
64
+ | a, y, yv, b => T(R, del(a), y, yv, b)
65
+ }
66
+
67
+ function delformRight(left: RB[K, V], key: K, value: V, right: RB[K, V]): RB[K, V] {
68
+ | a, y, yv, T(B, _, _, _, _) => balright(a, y, yv, del(right))
69
+ | a, y, yv, b => T(R, a, y, yv, del(b))
70
+ }
71
+
72
+ del(t).{
73
+ | T(_, a, y, yv, b) => T(B, a, y, yv, b)
74
+ | _ => E
75
+ }
76
+ }
77
+
78
+ balleft[K: Order, V](tree1: RB[K, V], key: K, value: V, tree2: RB[K, V]): RB[K, V] {
79
+ | T(R, a, x, xv, b), y, yv, c => T(R, T(B, a, x, xv, b), y, yv, c)
80
+ | bl, x, xv, T(B, a, y, yv, b) => balance(bl, x, xv, T(R, a, y, yv, b))
81
+ | bl, x, xv, T(R, T(B, a, y, yv, b), z, zv, c) => T(R, T(B, bl, x, xv, a), y, yv, (balance(b, z, zv, sub1(c))))
82
+ | _, _, _, _ => panic("Unexhaustive match in balleft")
83
+ }
84
+
85
+ balright[K: Order, V](tree1: RB[K, V], key: K, value: V, tree2: RB[K, V]): RB[K, V] {
86
+ | a, x, xv, T(R, b, y, yv, c) => T(R, a, x, xv, T(B, b, y, yv, c))
87
+ | T(B, a, x, xv, b), y, yv, bl => balance(T(R, a, x, xv, b), y, yv, bl)
88
+ | T(R, a, x, xv, T(B, b, y, yv, c)), z, zv, bl => T(R, balance(sub1(a), x, xv, b), y, yv, T(B, c, z, zv, bl))
89
+ | _, _, _, _ => panic("Unexhaustive match in balright")
90
+ }
91
+
92
+ sub1[K: Order, V](tree: RB[K, V]): RB[K, V] {
93
+ | T(B, a, x, xv, b) => T(R, a, x, xv, b)
94
+ | _ => panic("invariance violation")
95
+ }
96
+
97
+ app[K: Order, V](tree1: RB[K, V], tree2: RB[K, V]): RB[K, V] {
98
+ | E, b => b
99
+ | a, E => a
100
+ | T(R, a, x, xv, b), T(R, c, y, yv, d) =>
101
+ app(b, c).{
102
+ | T(R, b2, z, zv, c2) => T(R, T(R, a, x, xv, b2), z, zv, T(R, c2, y, yv, d))
103
+ | bc => T(R, a, x, xv, T(R, bc, y, yv, d))
104
+ }
105
+ | T(B, a, x, xv, b), T(B, c, y, yv, d) =>
106
+ app(b, c).{
107
+ | T(R, b2, z, zv, c2) => T(R, T(B, a, x, xv, b2), z, zv, T(B, c2, y, yv, d))
108
+ | bc => balleft(a, x, xv, T(B, bc, y, yv, d))
109
+ }
110
+ | a, T(R, b, x, xv, c) => T(R, app(a, b), x, xv, c)
111
+ | T(R, a, x, xv, b), c => T(R, a, x, xv, app(b, c))
112
+ }
113
+
114
+ extend self[K: Order, V]: RB[K, V] {
115
+
116
+ get(key: K): Option[V] {
117
+ self.{
118
+ | E_ => None
119
+ | T(_, a, y, yv, b) => Ordering.compare(key, y).{
120
+ | OrderingBefore => a.get(key)
121
+ | OrderingAfter => b.get(key)
122
+ | OrderingSame => Some(yv)
123
+ }
124
+ }
125
+ }
126
+
127
+ size(): Int {
128
+ self.{
129
+ | E => 0
130
+ | T(_, l, _, _, r) => l.size() + 1 + r.size()
131
+ }
132
+ }
133
+
134
+ pairs(): List[Pair[K, V]] {
135
+ let result = [].toArray()
136
+ self.each {k, v =>
137
+ result.push(Pair(k, v))
138
+ }
139
+ result.drain()
140
+ }
141
+
142
+ toStream(cycle: Bool): Stream[Pair[K, V]] {
143
+ mutable array = [self]
144
+ function next(): Option[Pair[K, V]] {
145
+ array.{
146
+ | [] =>
147
+ if(cycle && self.{| E => False | _ => True}) {
148
+ array = [self]
149
+ tailcall next()
150
+ } else {
151
+ None
152
+ }
153
+ | [E, ...tail] =>
154
+ array = tail
155
+ tailcall next()
156
+ | [T(_, E, k, v, E), ...tail] =>
157
+ array = tail
158
+ Some(Pair(k, v))
159
+ | [T(_, l, k, v, r), ...tail] =>
160
+ array = [l, T(B, E, k, v, E), r, ...tail]
161
+ tailcall next()
162
+ }
163
+ }
164
+ Stream.new(next)
165
+ }
166
+
167
+ each(body: (K, V) => Unit): Unit {
168
+ self.{
169
+ | E =>
170
+ | T(_, l, k, v, r) =>
171
+ l.each(body)
172
+ body(k, v)
173
+ r.each(body)
174
+ }
175
+ }
176
+
177
+ eachWhile(body: (K, V) => Bool): Bool {
178
+ self.{
179
+ | E =>
180
+ True
181
+ | T(_, l, k, v, r) =>
182
+ l.eachWhile(body) &&
183
+ body(k, v) &&
184
+ r.eachWhile(body)
185
+ }
186
+ }
187
+
188
+ map[K2: Order, V2](body: (K, V) => Pair[K2, V2]): RB[K2, V2] {
189
+ mutable result = E
190
+ self.each {k, v =>
191
+ let pair = body(k, v)
192
+ result = insert(pair.first, pair.second, result)
193
+ }
194
+ result
195
+ }
196
+
197
+ mapValues[V2](body: (K, V) => V2): RB[K, V2] {
198
+ self.{
199
+ | E => E
200
+ | T(c, l, k, v, r) =>
201
+ T(c, l.mapValues(body), k, body(k, v), r.mapValues(body))
202
+ }
203
+ }
204
+
205
+ find(body: (K, V) => Bool): Option[Pair[K, V]] {
206
+ mutable result = None
207
+ self.eachWhile {k, v =>
208
+ if(body(k, v)) {
209
+ result = Some(Pair(k, v))
210
+ False
211
+ } else {True}
212
+ }
213
+ result
214
+ }
215
+
216
+ }
package/core/Show.ff CHANGED
@@ -1,43 +1,43 @@
1
- trait T: Show {
2
- show(value: T): String
3
- }
4
-
5
- instance Bool: Show {
6
- show(value: Bool): String {
7
- | False => "False"
8
- | True => "True"
9
- }
10
- }
11
-
12
- instance Nothing: Show {
13
- show(value: Nothing): String {""}
14
- }
15
-
16
- instance Char: Show {
17
- show(value: Char): String {value.toString()}
18
- }
19
-
20
- instance Int: Show {
21
- show(value: Int): String {"" + value}
22
- }
23
-
24
- instance Float: Show {
25
- show(value: Float): String {"" + value}
26
- }
27
-
28
- instance String: Show {
29
- show(value: String): String
30
- target js sync "return JSON.stringify(value_);"
31
- }
32
-
33
- instance List[T: Show]: Show {
34
- show(value: List[T]): String {
35
- "[" + value.map(show).join(", ") + "]"
36
- }
37
- }
38
-
39
- instance Pair[A: Show, B: Show]: Show {
40
- show(value: Pair[A, B]): String {
41
- "Pair(" + show(value.first) + ", " + show(value.second) + ")"
42
- }
43
- }
1
+ trait T: Show {
2
+ show(value: T): String
3
+ }
4
+
5
+ instance Bool: Show {
6
+ show(value: Bool): String {
7
+ | False => "False"
8
+ | True => "True"
9
+ }
10
+ }
11
+
12
+ instance Nothing: Show {
13
+ show(value: Nothing): String {""}
14
+ }
15
+
16
+ instance Char: Show {
17
+ show(value: Char): String {value.toString()}
18
+ }
19
+
20
+ instance Int: Show {
21
+ show(value: Int): String {"" + value}
22
+ }
23
+
24
+ instance Float: Show {
25
+ show(value: Float): String {"" + value}
26
+ }
27
+
28
+ instance String: Show {
29
+ show(value: String): String
30
+ target js sync "return JSON.stringify(value_);"
31
+ }
32
+
33
+ instance List[T: Show]: Show {
34
+ show(value: List[T]): String {
35
+ "[" + value.map(show).join(", ") + "]"
36
+ }
37
+ }
38
+
39
+ instance Pair[A: Show, B: Show]: Show {
40
+ show(value: Pair[A, B]): String {
41
+ "Pair(" + show(value.first) + ", " + show(value.second) + ")"
42
+ }
43
+ }
@@ -1,68 +1,68 @@
1
- newtype SourceLocation(location: String) // E.g. "directory/Module:line:column,group,package>Type>function"
2
-
3
- here(location: SourceLocation = SourceLocation.callSite()): SourceLocation {
4
- location
5
- }
6
-
7
- callSite(): SourceLocation {
8
- panic("SourceLocation.callSite() can only occur as the default value of an argument")
9
- }
10
-
11
- extend self: SourceLocation {
12
-
13
- group(): String {
14
- self.location.dropWhile {_ != ','}.dropFirst().takeWhile {_ != ','}
15
- }
16
-
17
- package(): String {
18
- self.location.dropWhile {_ != ','}.dropFirst().dropWhile {_ != ','}.dropFirst().takeWhile {_ != '>'}
19
- }
20
-
21
- directory(): String {
22
- self.location.takeWhile {_ != ':'}.reverse().dropWhile {_ != '/'}.dropFirst().reverse()
23
- }
24
-
25
- module(): String {
26
- self.location.takeWhile {_ != ':'}.reverse().takeWhile {_ != '/'}.reverse()
27
- }
28
-
29
- line(): Int {
30
- self.location.dropWhile {_ != ':'}.dropFirst().takeWhile {_ != ':'}.grabInt()
31
- }
32
-
33
- column(): Int {
34
- self.location.dropWhile {_ != ':'}.dropFirst().dropWhile {_ != ':'}.dropFirst().takeWhile {_ != ','}.grabInt()
35
- }
36
-
37
- breadcrumbs(): List[String] {
38
- self.location.dropWhile {_ != '>'}.dropFirst().split('>')
39
- }
40
-
41
- }
42
-
43
- instance SourceLocation: Show {
44
- show(self: SourceLocation): String {
45
- self.location
46
- }
47
- }
48
-
49
- instance SourceLocation: Equal {
50
- equals(a: SourceLocation, b: SourceLocation): Bool {
51
- a.location == b.location
52
- }
53
- }
54
-
55
- instance SourceLocation: Order {
56
- compare(a: SourceLocation, b: SourceLocation): Ordering {
57
- Ordering.compare(a.location, b.location)
58
- }
59
- }
60
-
61
- instance SourceLocation: Serializable {
62
- serializeUsing(serialization: Serialization, self: SourceLocation) {
63
- Serializable.serializeUsing(serialization, self.location)
64
- }
65
- deserializeUsing(serialization: Serialization): SourceLocation {
66
- SourceLocation(Serializable.deserializeUsing(serialization))
67
- }
68
- }
1
+ newtype SourceLocation(location: String) // E.g. "directory/Module:line:column,group,package>Type>function"
2
+
3
+ here(location: SourceLocation = SourceLocation.callSite()): SourceLocation {
4
+ location
5
+ }
6
+
7
+ callSite(): SourceLocation {
8
+ panic("SourceLocation.callSite() can only occur as the default value of an argument")
9
+ }
10
+
11
+ extend self: SourceLocation {
12
+
13
+ group(): String {
14
+ self.location.dropWhile {_ != ','}.dropFirst().takeWhile {_ != ','}
15
+ }
16
+
17
+ package(): String {
18
+ self.location.dropWhile {_ != ','}.dropFirst().dropWhile {_ != ','}.dropFirst().takeWhile {_ != '>'}
19
+ }
20
+
21
+ directory(): String {
22
+ self.location.takeWhile {_ != ':'}.reverse().dropWhile {_ != '/'}.dropFirst().reverse()
23
+ }
24
+
25
+ module(): String {
26
+ self.location.takeWhile {_ != ':'}.reverse().takeWhile {_ != '/'}.reverse()
27
+ }
28
+
29
+ line(): Int {
30
+ self.location.dropWhile {_ != ':'}.dropFirst().takeWhile {_ != ':'}.grabInt()
31
+ }
32
+
33
+ column(): Int {
34
+ self.location.dropWhile {_ != ':'}.dropFirst().dropWhile {_ != ':'}.dropFirst().takeWhile {_ != ','}.grabInt()
35
+ }
36
+
37
+ breadcrumbs(): List[String] {
38
+ self.location.dropWhile {_ != '>'}.dropFirst().split('>')
39
+ }
40
+
41
+ }
42
+
43
+ instance SourceLocation: Show {
44
+ show(self: SourceLocation): String {
45
+ self.location
46
+ }
47
+ }
48
+
49
+ instance SourceLocation: Equal {
50
+ equals(a: SourceLocation, b: SourceLocation): Bool {
51
+ a.location == b.location
52
+ }
53
+ }
54
+
55
+ instance SourceLocation: Order {
56
+ compare(a: SourceLocation, b: SourceLocation): Ordering {
57
+ Ordering.compare(a.location, b.location)
58
+ }
59
+ }
60
+
61
+ instance SourceLocation: Serializable {
62
+ serializeUsing(serialization: Serialization, self: SourceLocation) {
63
+ Serializable.serializeUsing(serialization, self.location)
64
+ }
65
+ deserializeUsing(serialization: Serialization): SourceLocation {
66
+ SourceLocation(Serializable.deserializeUsing(serialization))
67
+ }
68
+ }