firefly-compiler 0.4.4 → 0.4.6
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.
- package/.hintrc +5 -0
- package/README.md +42 -61
- package/compiler/Compiler.ff +6 -2
- package/compiler/Deriver.ff +10 -0
- package/compiler/Environment.ff +2 -1
- package/compiler/JsEmitter.ff +29 -17
- package/compiler/Resolver.ff +1 -1
- package/core/.firefly/package.ff +1 -2
- package/core/Box.ff +7 -0
- package/core/BuildSystem.ff +5 -4
- package/core/Core.ff +4 -0
- package/core/HttpClient.ff +1 -1
- package/core/JsValue.ff +22 -1
- package/core/Lock.ff +4 -4
- package/core/NodeSystem.ff +12 -3
- package/core/Path.ff +1 -1
- package/core/SourceLocation.ff +41 -0
- package/core/Stack.ff +6 -6
- package/core/StringMap.ff +3 -3
- package/lsp/LanguageServer.ff +32 -7
- package/lsp/stderr.txt +1 -0
- package/lsp/stdin.txt +11 -0
- package/lsp/stdout.txt +41 -0
- package/lux/.firefly/package.ff +2 -0
- package/lux/Lux.ff +473 -0
- package/lux/LuxEvent.ff +116 -0
- package/lux/Main.ff +126 -0
- package/lux/Main2.ff +144 -0
- package/meetup/AutoCompletion.ff +6 -0
- package/output/js/ff/compiler/Builder.mjs +444 -440
- package/output/js/ff/compiler/Compiler.mjs +416 -410
- package/output/js/ff/compiler/Dependencies.mjs +389 -385
- package/output/js/ff/compiler/Deriver.mjs +1170 -1166
- package/output/js/ff/compiler/Dictionaries.mjs +1309 -1305
- package/output/js/ff/compiler/Environment.mjs +1015 -1005
- package/output/js/ff/compiler/Inference.mjs +4268 -4264
- package/output/js/ff/compiler/JsEmitter.mjs +5391 -5353
- package/output/js/ff/compiler/JsImporter.mjs +266 -262
- package/output/js/ff/compiler/LspHook.mjs +793 -789
- package/output/js/ff/compiler/Main.mjs +1699 -1695
- package/output/js/ff/compiler/Parser.mjs +4008 -4004
- package/output/js/ff/compiler/Patterns.mjs +927 -923
- package/output/js/ff/compiler/Resolver.mjs +2307 -2303
- package/output/js/ff/compiler/Substitution.mjs +1150 -1146
- package/output/js/ff/compiler/Syntax.mjs +12434 -12430
- package/output/js/ff/compiler/Token.mjs +3096 -3092
- package/output/js/ff/compiler/Tokenizer.mjs +593 -589
- package/output/js/ff/compiler/Unification.mjs +1752 -1748
- package/output/js/ff/compiler/Wildcards.mjs +608 -604
- package/output/js/ff/compiler/Workspace.mjs +687 -683
- package/output/js/ff/core/Any.mjs +143 -139
- package/output/js/ff/core/Array.mjs +547 -543
- package/output/js/ff/core/AssetSystem.mjs +274 -270
- package/output/js/ff/core/Atomic.mjs +154 -150
- package/output/js/ff/core/Bool.mjs +152 -141
- package/output/js/ff/core/Box.mjs +112 -0
- package/output/js/ff/core/BrowserSystem.mjs +126 -122
- package/output/js/ff/core/Buffer.mjs +395 -391
- package/output/js/ff/core/BuildSystem.mjs +296 -290
- package/output/js/ff/core/Channel.mjs +189 -185
- package/output/js/ff/core/Char.mjs +149 -145
- package/output/js/ff/core/Core.mjs +300 -288
- package/output/js/ff/core/Duration.mjs +116 -112
- package/output/js/ff/core/Equal.mjs +179 -175
- package/output/js/ff/core/Error.mjs +142 -138
- package/output/js/ff/core/FileHandle.mjs +150 -146
- package/output/js/ff/core/Float.mjs +225 -214
- package/output/js/ff/core/HttpClient.mjs +190 -186
- package/output/js/ff/core/Instant.mjs +109 -105
- package/output/js/ff/core/Int.mjs +265 -254
- package/output/js/ff/core/IntMap.mjs +280 -276
- package/output/js/ff/core/JsSystem.mjs +238 -234
- package/output/js/ff/core/JsValue.mjs +714 -664
- package/output/js/ff/core/List.mjs +2334 -2321
- package/output/js/ff/core/Lock.mjs +230 -226
- package/output/js/ff/core/Log.mjs +163 -159
- package/output/js/ff/core/Map.mjs +362 -358
- package/output/js/ff/core/NodeSystem.mjs +302 -283
- package/output/js/ff/core/Nothing.mjs +104 -100
- package/output/js/ff/core/Option.mjs +1015 -1002
- package/output/js/ff/core/Ordering.mjs +730 -726
- package/output/js/ff/core/Pair.mjs +331 -318
- package/output/js/ff/core/Path.mjs +546 -542
- package/output/js/ff/core/RbMap.mjs +1940 -1936
- package/output/js/ff/core/Serializable.mjs +428 -424
- package/output/js/ff/core/Set.mjs +254 -250
- package/output/js/ff/core/Show.mjs +205 -201
- package/output/js/ff/core/SourceLocation.mjs +229 -0
- package/output/js/ff/core/Stack.mjs +541 -537
- package/output/js/ff/core/Stream.mjs +1304 -1300
- package/output/js/ff/core/String.mjs +365 -354
- package/output/js/ff/core/StringMap.mjs +280 -276
- package/output/js/ff/core/Task.mjs +320 -316
- package/output/js/ff/core/Try.mjs +507 -503
- package/output/js/ff/core/Unit.mjs +151 -103
- package/package.json +29 -29
- package/vscode/package-lock.json +5 -5
- package/vscode/package.json +1 -1
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.