├── .DS_Store ├── .firefly-workspace ├── .gitignore ├── .hintrc ├── .vscode ├── launch.json └── settings.json ├── LICENSE.txt ├── bin ├── Release.ff └── firefly.js ├── compiler ├── .firefly │ └── package.ff ├── Builder.ff ├── Compiler.ff ├── Dependencies.ff ├── DependencyLock.ff ├── Deriver.ff ├── DevelopMode.ff ├── Dictionaries.ff ├── Environment.ff ├── Inference.ff ├── JsEmitter.ff ├── JsImporter.ff ├── LspHook.ff ├── Main.ff ├── ModuleCache.ff ├── Parser.ff ├── Patterns.ff ├── Resolver.ff ├── SourceMap.ff ├── Substitution.ff ├── Syntax.ff ├── Token.ff ├── Tokenizer.ff ├── Unification.ff ├── Wildcards.ff └── Workspace.ff ├── core ├── .firefly │ └── package.ff ├── Any.ff ├── Array.ff ├── AssetSystem.ff ├── Atomic.ff ├── Bool.ff ├── BrowserSystem.ff ├── Buffer.ff ├── BuildSystem.ff ├── Channel.ff ├── Char.ff ├── Core.ff ├── Crypto.ff ├── Date.ff ├── Duration.ff ├── Equal.ff ├── Error.ff ├── FileHandle.ff ├── Float.ff ├── HttpClient.ff ├── Instant.ff ├── Int.ff ├── IntMap.ff ├── Js.ff ├── JsSystem.ff ├── JsValue.ff ├── Json.ff ├── List.ff ├── Lock.ff ├── Log.ff ├── Map.ff ├── NodeSystem.ff ├── Nothing.ff ├── Option.ff ├── Ordering.ff ├── Pair.ff ├── Path.ff ├── Queue.ff ├── Random.ff ├── RbMap.ff ├── Serializable.ff ├── Set.ff ├── Show.ff ├── SourceLocation.ff ├── Stream.ff ├── String.ff ├── StringMap.ff ├── Task.ff ├── Try.ff └── Unit.ff ├── experimental ├── benchmarks │ ├── ListGrab.ff │ ├── ListGrab.java │ ├── Pyrotek45.ff │ └── Pyrotek45.java ├── bidirectional │ └── Bidi.ff ├── date │ ├── Date.ff │ └── Main.ff ├── docker │ ├── Dockerfile │ └── Main.ff ├── foldertest │ ├── .firefly │ │ └── package.ff │ ├── Root.ff │ └── findinfolder │ │ └── FindInFolder.ff ├── lines │ └── Main.ff ├── proxy │ ├── Main.ff │ ├── Runner.ff │ └── Tcp.ff ├── random │ ├── AltGeneric.ff │ ├── AsciiBuffer.ff │ ├── Async.ff │ ├── Buffer2.ff │ ├── Cat.ff │ ├── Dictionary.ff │ ├── Example.ff │ ├── Generic.ff │ ├── HappyEyeballs.ff │ ├── HashMap.ff │ ├── IfElseUnit.ff │ ├── Index.ff │ ├── InputOutput.ff │ ├── ListVsArray.ff │ ├── Main.ff │ ├── MapTest.ff │ ├── OldTaskSystem.ff │ ├── PatternTest.ff │ ├── Patterns.ff │ ├── Process.ff │ ├── ReadBytesTest.ff │ ├── RunLength.ff │ ├── Scrape.ff │ ├── Serialization.ff │ ├── SerializationTest.ff │ ├── Serializer.ff │ ├── StdInOutErr.ff │ ├── Superdigit.ff │ ├── Symbols.ff │ ├── Tag.ff │ ├── Tensor.ff │ ├── Try.ff │ ├── Tsv.ff │ ├── TypesAreModules.ff │ ├── Units.ff │ ├── blueprints │ │ ├── Blueprint.ff │ │ ├── Main.ff │ │ ├── Pretty.ff │ │ └── User.ff │ ├── blueprintsystem │ │ ├── BlueprintSystem.ff │ │ ├── Deserialize.ff │ │ ├── ReadJs.ff │ │ └── User.ff │ ├── kahrs │ │ ├── Kahrs.ff │ │ ├── TestKahrs.ff │ │ └── TestMap.ff │ └── streaming │ │ ├── Gzip.ff │ │ ├── Main.ff │ │ ├── S3Bucket.ff │ │ └── Tar.ff ├── rhymeapp │ ├── Main.ff │ └── index.html ├── s3 │ ├── S3TestAuthorizationHeader.ff │ └── S3TestPut.ff ├── site │ ├── .firefly │ │ └── package.ff │ ├── ChatRoute.ff │ ├── Main.ff │ ├── RouteTools.ff │ └── Routes.ff ├── site2 │ ├── .firefly │ │ └── package.ff │ ├── ChatRoomRoute.ff │ ├── Html.ff │ ├── Main.ff │ └── Router.ff ├── terrain │ ├── Main.ff │ ├── Terrain.ff │ └── Terrain2.ff └── tests │ ├── TestCancel.ff │ ├── TestDate.ff │ ├── TestEmailAlertDateLogic.ff │ └── TestJson.ff ├── fireflysite ├── .dockerignore ├── .firefly │ └── package.ff ├── CommunityOverview.ff ├── Dockerfile ├── DocumentParser.ff ├── FrontPage.ff ├── GettingStarted.ff ├── Guide.ff ├── Html.ff ├── Main.ff ├── Menu.ff ├── PackagesOverview.ff ├── Router.ff ├── Styles.ff ├── Test.ff ├── Website.ff ├── assets │ ├── font │ │ ├── NotoSansMono-Regular.ttf │ │ ├── NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf │ │ ├── gf-inter-latin.woff2 │ │ ├── gf-noto-sans-mono-latin.woff2 │ │ └── gf-nunito-sans-latin.woff2 │ ├── image │ │ ├── autocomplete-small.png │ │ ├── autocomplete-small.webp │ │ ├── autocomplete.png │ │ ├── edit-time-error.png │ │ ├── edit-time-error.webp │ │ ├── firefly-logo-notext.png │ │ ├── firefly-logo-yellow.png │ │ └── firefly-logo-yellow.webp │ └── markdown │ │ ├── reference.md │ │ ├── reference │ │ ├── Exceptions.md │ │ ├── base-types.md │ │ ├── emitted-javascript.md │ │ ├── functions-and-methods.md │ │ ├── javascript-interop.md │ │ ├── modules-and-packages.md │ │ ├── pattern-matching.md │ │ ├── statements-and-expressions.md │ │ ├── structured-concurrency.md │ │ ├── traits-and-instances.md │ │ └── user-defined-types.md │ │ └── scratch │ │ ├── Toc.md │ │ ├── control-flow.md │ │ └── old-structured-concurrency.md ├── demos │ ├── CountingButtonDemo.ff │ ├── ExamplesOverview.ff │ ├── MatchingPasswordsDemo.ff │ └── PostgresqlDemo.ff └── routes │ ├── RouteFront.ff │ ├── RouteNonMarkdown.ff │ └── RouteReference.ff ├── graph ├── .firefly │ └── package.ff └── Graph.ff ├── lsp ├── .firefly │ └── package.ff ├── CompletionHandler.ff ├── Handler.ff ├── HoverHandler.ff ├── LanguageServer.ff ├── SignatureHelpHandler.ff ├── SymbolHandler.ff ├── TestReferences.ff ├── TestReferencesCase.ff ├── stderr.txt ├── stdin.txt └── stdout.txt ├── lux ├── .firefly │ └── package.ff ├── Css.ff ├── CssTest.ff ├── Lux.ff ├── LuxEvent.ff ├── Main.ff ├── Main2.ff └── TestDry.ff ├── output └── js │ └── ff │ ├── compiler │ ├── Builder.mjs │ ├── Builder.mjs.map │ ├── Compiler.mjs │ ├── Compiler.mjs.map │ ├── Dependencies.mjs │ ├── Dependencies.mjs.map │ ├── DependencyLock.mjs │ ├── DependencyLock.mjs.map │ ├── Deriver.mjs │ ├── Deriver.mjs.map │ ├── DevelopMode.mjs │ ├── DevelopMode.mjs.map │ ├── Dictionaries.mjs │ ├── Dictionaries.mjs.map │ ├── Environment.mjs │ ├── Environment.mjs.map │ ├── Inference.mjs │ ├── Inference.mjs.map │ ├── JsEmitter.mjs │ ├── JsEmitter.mjs.map │ ├── JsImporter.mjs │ ├── JsImporter.mjs.map │ ├── LspHook.mjs │ ├── LspHook.mjs.map │ ├── Main.mjs │ ├── Main.mjs.map │ ├── Main.run.mjs │ ├── ModuleCache.mjs │ ├── ModuleCache.mjs.map │ ├── Parser.mjs │ ├── Parser.mjs.map │ ├── Patterns.mjs │ ├── Patterns.mjs.map │ ├── Resolver.mjs │ ├── Resolver.mjs.map │ ├── SourceMap.mjs │ ├── SourceMap.mjs.map │ ├── Substitution.mjs │ ├── Substitution.mjs.map │ ├── Syntax.mjs │ ├── Syntax.mjs.map │ ├── Token.mjs │ ├── Token.mjs.map │ ├── Tokenizer.mjs │ ├── Tokenizer.mjs.map │ ├── Unification.mjs │ ├── Unification.mjs.map │ ├── Wildcards.mjs │ ├── Wildcards.mjs.map │ ├── Workspace.mjs │ └── Workspace.mjs.map │ └── core │ ├── Any.mjs │ ├── Any.mjs.map │ ├── Array.mjs │ ├── Array.mjs.map │ ├── AssetSystem.mjs │ ├── AssetSystem.mjs.map │ ├── Atomic.mjs │ ├── Atomic.mjs.map │ ├── Bool.mjs │ ├── Bool.mjs.map │ ├── BrowserSystem.mjs │ ├── BrowserSystem.mjs.map │ ├── Buffer.mjs │ ├── Buffer.mjs.map │ ├── BuildSystem.mjs │ ├── BuildSystem.mjs.map │ ├── Channel.mjs │ ├── Channel.mjs.map │ ├── Char.mjs │ ├── Char.mjs.map │ ├── Core.mjs │ ├── Core.mjs.map │ ├── Crypto.mjs │ ├── Crypto.mjs.map │ ├── Date.mjs │ ├── Date.mjs.map │ ├── Duration.mjs │ ├── Duration.mjs.map │ ├── Equal.mjs │ ├── Equal.mjs.map │ ├── Error.mjs │ ├── Error.mjs.map │ ├── FileHandle.mjs │ ├── FileHandle.mjs.map │ ├── Float.mjs │ ├── Float.mjs.map │ ├── HttpClient.mjs │ ├── HttpClient.mjs.map │ ├── Int.mjs │ ├── Int.mjs.map │ ├── IntMap.mjs │ ├── IntMap.mjs.map │ ├── Js.mjs │ ├── Js.mjs.map │ ├── JsSystem.mjs │ ├── JsSystem.mjs.map │ ├── JsValue.mjs │ ├── JsValue.mjs.map │ ├── Json.mjs │ ├── Json.mjs.map │ ├── List.mjs │ ├── List.mjs.map │ ├── Lock.mjs │ ├── Lock.mjs.map │ ├── Log.mjs │ ├── Log.mjs.map │ ├── Map.mjs │ ├── Map.mjs.map │ ├── NodeSystem.mjs │ ├── NodeSystem.mjs.map │ ├── Nothing.mjs │ ├── Nothing.mjs.map │ ├── Option.mjs │ ├── Option.mjs.map │ ├── Ordering.mjs │ ├── Ordering.mjs.map │ ├── Pair.mjs │ ├── Pair.mjs.map │ ├── Path.mjs │ ├── Path.mjs.map │ ├── Queue.mjs │ ├── Queue.mjs.map │ ├── Random.mjs │ ├── Random.mjs.map │ ├── RbMap.mjs │ ├── RbMap.mjs.map │ ├── Serializable.mjs │ ├── Serializable.mjs.map │ ├── Set.mjs │ ├── Set.mjs.map │ ├── Show.mjs │ ├── Show.mjs.map │ ├── SourceLocation.mjs │ ├── SourceLocation.mjs.map │ ├── Stream.mjs │ ├── Stream.mjs.map │ ├── String.mjs │ ├── String.mjs.map │ ├── StringMap.mjs │ ├── StringMap.mjs.map │ ├── Task.mjs │ ├── Task.mjs.map │ ├── Try.mjs │ ├── Try.mjs.map │ ├── Unit.mjs │ ├── Unit.mjs.map │ └── node_modules ├── package.json ├── postgresql ├── .firefly │ ├── include │ │ └── package.json │ └── package.ff └── Pg.ff ├── rpc ├── .firefly │ └── package.ff └── Rpc.ff ├── s3 ├── .firefly │ └── package.ff └── S3.ff ├── vscode ├── .vscode │ ├── launch.json │ └── tasks.json ├── .vscodeignore ├── LICENSE.txt ├── Prepublish.ff ├── README.md ├── client │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── extension.ts │ └── tsconfig.json ├── icons │ ├── firefly-icon.png │ ├── firefly-icon.svg │ ├── firefly-logo-notext.png │ └── firefly-logo.png ├── language-configuration.json ├── package-lock.json ├── package.json ├── snippets-none.json ├── snippets.json ├── syntaxes │ ├── firefly-markdown-injection.json │ └── firefly.tmLanguage.json └── tsconfig.json ├── webserver ├── .firefly │ ├── include │ │ ├── package-lock.json │ │ └── package.json │ └── package.ff ├── WebRoute.ff └── WebServer.ff └── websocket ├── .firefly └── package.ff └── WebSocket.ff /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/.DS_Store -------------------------------------------------------------------------------- /.firefly-workspace: -------------------------------------------------------------------------------- 1 | ff:* . 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/.gitignore -------------------------------------------------------------------------------- /.hintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/.hintrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /bin/Release.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/bin/Release.ff -------------------------------------------------------------------------------- /bin/firefly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/bin/firefly.js -------------------------------------------------------------------------------- /compiler/.firefly/package.ff: -------------------------------------------------------------------------------- 1 | package ff:compiler:0.0.0 2 | -------------------------------------------------------------------------------- /compiler/Builder.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/compiler/Builder.ff -------------------------------------------------------------------------------- /compiler/Compiler.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/compiler/Compiler.ff -------------------------------------------------------------------------------- /compiler/Dependencies.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/compiler/Dependencies.ff -------------------------------------------------------------------------------- /compiler/DependencyLock.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/compiler/DependencyLock.ff -------------------------------------------------------------------------------- /compiler/Deriver.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/compiler/Deriver.ff -------------------------------------------------------------------------------- /compiler/DevelopMode.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/compiler/DevelopMode.ff -------------------------------------------------------------------------------- /compiler/Dictionaries.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/compiler/Dictionaries.ff -------------------------------------------------------------------------------- /compiler/Environment.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/compiler/Environment.ff -------------------------------------------------------------------------------- /compiler/Inference.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/compiler/Inference.ff -------------------------------------------------------------------------------- /compiler/JsEmitter.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/compiler/JsEmitter.ff -------------------------------------------------------------------------------- /compiler/JsImporter.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/compiler/JsImporter.ff -------------------------------------------------------------------------------- /compiler/LspHook.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/compiler/LspHook.ff -------------------------------------------------------------------------------- /compiler/Main.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/compiler/Main.ff -------------------------------------------------------------------------------- /compiler/ModuleCache.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/compiler/ModuleCache.ff -------------------------------------------------------------------------------- /compiler/Parser.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/compiler/Parser.ff -------------------------------------------------------------------------------- /compiler/Patterns.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/compiler/Patterns.ff -------------------------------------------------------------------------------- /compiler/Resolver.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/compiler/Resolver.ff -------------------------------------------------------------------------------- /compiler/SourceMap.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/compiler/SourceMap.ff -------------------------------------------------------------------------------- /compiler/Substitution.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/compiler/Substitution.ff -------------------------------------------------------------------------------- /compiler/Syntax.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/compiler/Syntax.ff -------------------------------------------------------------------------------- /compiler/Token.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/compiler/Token.ff -------------------------------------------------------------------------------- /compiler/Tokenizer.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/compiler/Tokenizer.ff -------------------------------------------------------------------------------- /compiler/Unification.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/compiler/Unification.ff -------------------------------------------------------------------------------- /compiler/Wildcards.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/compiler/Wildcards.ff -------------------------------------------------------------------------------- /compiler/Workspace.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/compiler/Workspace.ff -------------------------------------------------------------------------------- /core/.firefly/package.ff: -------------------------------------------------------------------------------- 1 | package ff:core:0.0.0 2 | -------------------------------------------------------------------------------- /core/Any.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Any.ff -------------------------------------------------------------------------------- /core/Array.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Array.ff -------------------------------------------------------------------------------- /core/AssetSystem.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/AssetSystem.ff -------------------------------------------------------------------------------- /core/Atomic.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Atomic.ff -------------------------------------------------------------------------------- /core/Bool.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Bool.ff -------------------------------------------------------------------------------- /core/BrowserSystem.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/BrowserSystem.ff -------------------------------------------------------------------------------- /core/Buffer.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Buffer.ff -------------------------------------------------------------------------------- /core/BuildSystem.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/BuildSystem.ff -------------------------------------------------------------------------------- /core/Channel.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Channel.ff -------------------------------------------------------------------------------- /core/Char.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Char.ff -------------------------------------------------------------------------------- /core/Core.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Core.ff -------------------------------------------------------------------------------- /core/Crypto.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Crypto.ff -------------------------------------------------------------------------------- /core/Date.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Date.ff -------------------------------------------------------------------------------- /core/Duration.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Duration.ff -------------------------------------------------------------------------------- /core/Equal.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Equal.ff -------------------------------------------------------------------------------- /core/Error.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Error.ff -------------------------------------------------------------------------------- /core/FileHandle.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/FileHandle.ff -------------------------------------------------------------------------------- /core/Float.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Float.ff -------------------------------------------------------------------------------- /core/HttpClient.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/HttpClient.ff -------------------------------------------------------------------------------- /core/Instant.ff: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/Int.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Int.ff -------------------------------------------------------------------------------- /core/IntMap.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/IntMap.ff -------------------------------------------------------------------------------- /core/Js.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Js.ff -------------------------------------------------------------------------------- /core/JsSystem.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/JsSystem.ff -------------------------------------------------------------------------------- /core/JsValue.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/JsValue.ff -------------------------------------------------------------------------------- /core/Json.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Json.ff -------------------------------------------------------------------------------- /core/List.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/List.ff -------------------------------------------------------------------------------- /core/Lock.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Lock.ff -------------------------------------------------------------------------------- /core/Log.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Log.ff -------------------------------------------------------------------------------- /core/Map.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Map.ff -------------------------------------------------------------------------------- /core/NodeSystem.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/NodeSystem.ff -------------------------------------------------------------------------------- /core/Nothing.ff: -------------------------------------------------------------------------------- 1 | data Nothing {} 2 | -------------------------------------------------------------------------------- /core/Option.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Option.ff -------------------------------------------------------------------------------- /core/Ordering.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Ordering.ff -------------------------------------------------------------------------------- /core/Pair.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Pair.ff -------------------------------------------------------------------------------- /core/Path.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Path.ff -------------------------------------------------------------------------------- /core/Queue.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Queue.ff -------------------------------------------------------------------------------- /core/Random.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Random.ff -------------------------------------------------------------------------------- /core/RbMap.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/RbMap.ff -------------------------------------------------------------------------------- /core/Serializable.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Serializable.ff -------------------------------------------------------------------------------- /core/Set.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Set.ff -------------------------------------------------------------------------------- /core/Show.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Show.ff -------------------------------------------------------------------------------- /core/SourceLocation.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/SourceLocation.ff -------------------------------------------------------------------------------- /core/Stream.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Stream.ff -------------------------------------------------------------------------------- /core/String.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/String.ff -------------------------------------------------------------------------------- /core/StringMap.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/StringMap.ff -------------------------------------------------------------------------------- /core/Task.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Task.ff -------------------------------------------------------------------------------- /core/Try.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Try.ff -------------------------------------------------------------------------------- /core/Unit.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/core/Unit.ff -------------------------------------------------------------------------------- /experimental/benchmarks/ListGrab.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/benchmarks/ListGrab.ff -------------------------------------------------------------------------------- /experimental/benchmarks/ListGrab.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/benchmarks/ListGrab.java -------------------------------------------------------------------------------- /experimental/benchmarks/Pyrotek45.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/benchmarks/Pyrotek45.ff -------------------------------------------------------------------------------- /experimental/benchmarks/Pyrotek45.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/benchmarks/Pyrotek45.java -------------------------------------------------------------------------------- /experimental/bidirectional/Bidi.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/bidirectional/Bidi.ff -------------------------------------------------------------------------------- /experimental/date/Date.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/date/Date.ff -------------------------------------------------------------------------------- /experimental/date/Main.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/date/Main.ff -------------------------------------------------------------------------------- /experimental/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/docker/Dockerfile -------------------------------------------------------------------------------- /experimental/docker/Main.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/docker/Main.ff -------------------------------------------------------------------------------- /experimental/foldertest/.firefly/package.ff: -------------------------------------------------------------------------------- 1 | package foldergroup:test:0.0.0 2 | -------------------------------------------------------------------------------- /experimental/foldertest/Root.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/foldertest/Root.ff -------------------------------------------------------------------------------- /experimental/foldertest/findinfolder/FindInFolder.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/foldertest/findinfolder/FindInFolder.ff -------------------------------------------------------------------------------- /experimental/lines/Main.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/lines/Main.ff -------------------------------------------------------------------------------- /experimental/proxy/Main.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/proxy/Main.ff -------------------------------------------------------------------------------- /experimental/proxy/Runner.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/proxy/Runner.ff -------------------------------------------------------------------------------- /experimental/proxy/Tcp.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/proxy/Tcp.ff -------------------------------------------------------------------------------- /experimental/random/AltGeneric.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/AltGeneric.ff -------------------------------------------------------------------------------- /experimental/random/AsciiBuffer.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/AsciiBuffer.ff -------------------------------------------------------------------------------- /experimental/random/Async.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/Async.ff -------------------------------------------------------------------------------- /experimental/random/Buffer2.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/Buffer2.ff -------------------------------------------------------------------------------- /experimental/random/Cat.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/Cat.ff -------------------------------------------------------------------------------- /experimental/random/Dictionary.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/Dictionary.ff -------------------------------------------------------------------------------- /experimental/random/Example.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/Example.ff -------------------------------------------------------------------------------- /experimental/random/Generic.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/Generic.ff -------------------------------------------------------------------------------- /experimental/random/HappyEyeballs.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/HappyEyeballs.ff -------------------------------------------------------------------------------- /experimental/random/HashMap.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/HashMap.ff -------------------------------------------------------------------------------- /experimental/random/IfElseUnit.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/IfElseUnit.ff -------------------------------------------------------------------------------- /experimental/random/Index.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/Index.ff -------------------------------------------------------------------------------- /experimental/random/InputOutput.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/InputOutput.ff -------------------------------------------------------------------------------- /experimental/random/ListVsArray.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/ListVsArray.ff -------------------------------------------------------------------------------- /experimental/random/Main.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/Main.ff -------------------------------------------------------------------------------- /experimental/random/MapTest.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/MapTest.ff -------------------------------------------------------------------------------- /experimental/random/OldTaskSystem.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/OldTaskSystem.ff -------------------------------------------------------------------------------- /experimental/random/PatternTest.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/PatternTest.ff -------------------------------------------------------------------------------- /experimental/random/Patterns.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/Patterns.ff -------------------------------------------------------------------------------- /experimental/random/Process.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/Process.ff -------------------------------------------------------------------------------- /experimental/random/ReadBytesTest.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/ReadBytesTest.ff -------------------------------------------------------------------------------- /experimental/random/RunLength.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/RunLength.ff -------------------------------------------------------------------------------- /experimental/random/Scrape.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/Scrape.ff -------------------------------------------------------------------------------- /experimental/random/Serialization.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/Serialization.ff -------------------------------------------------------------------------------- /experimental/random/SerializationTest.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/SerializationTest.ff -------------------------------------------------------------------------------- /experimental/random/Serializer.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/Serializer.ff -------------------------------------------------------------------------------- /experimental/random/StdInOutErr.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/StdInOutErr.ff -------------------------------------------------------------------------------- /experimental/random/Superdigit.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/Superdigit.ff -------------------------------------------------------------------------------- /experimental/random/Symbols.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/Symbols.ff -------------------------------------------------------------------------------- /experimental/random/Tag.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/Tag.ff -------------------------------------------------------------------------------- /experimental/random/Tensor.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/Tensor.ff -------------------------------------------------------------------------------- /experimental/random/Try.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/Try.ff -------------------------------------------------------------------------------- /experimental/random/Tsv.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/Tsv.ff -------------------------------------------------------------------------------- /experimental/random/TypesAreModules.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/TypesAreModules.ff -------------------------------------------------------------------------------- /experimental/random/Units.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/Units.ff -------------------------------------------------------------------------------- /experimental/random/blueprints/Blueprint.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/blueprints/Blueprint.ff -------------------------------------------------------------------------------- /experimental/random/blueprints/Main.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/blueprints/Main.ff -------------------------------------------------------------------------------- /experimental/random/blueprints/Pretty.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/blueprints/Pretty.ff -------------------------------------------------------------------------------- /experimental/random/blueprints/User.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/blueprints/User.ff -------------------------------------------------------------------------------- /experimental/random/blueprintsystem/BlueprintSystem.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/blueprintsystem/BlueprintSystem.ff -------------------------------------------------------------------------------- /experimental/random/blueprintsystem/Deserialize.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/blueprintsystem/Deserialize.ff -------------------------------------------------------------------------------- /experimental/random/blueprintsystem/ReadJs.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/blueprintsystem/ReadJs.ff -------------------------------------------------------------------------------- /experimental/random/blueprintsystem/User.ff: -------------------------------------------------------------------------------- 1 | data User(id: Int, email: String) 2 | 3 | -------------------------------------------------------------------------------- /experimental/random/kahrs/Kahrs.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/kahrs/Kahrs.ff -------------------------------------------------------------------------------- /experimental/random/kahrs/TestKahrs.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/kahrs/TestKahrs.ff -------------------------------------------------------------------------------- /experimental/random/kahrs/TestMap.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/kahrs/TestMap.ff -------------------------------------------------------------------------------- /experimental/random/streaming/Gzip.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/streaming/Gzip.ff -------------------------------------------------------------------------------- /experimental/random/streaming/Main.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/streaming/Main.ff -------------------------------------------------------------------------------- /experimental/random/streaming/S3Bucket.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/streaming/S3Bucket.ff -------------------------------------------------------------------------------- /experimental/random/streaming/Tar.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/random/streaming/Tar.ff -------------------------------------------------------------------------------- /experimental/rhymeapp/Main.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/rhymeapp/Main.ff -------------------------------------------------------------------------------- /experimental/rhymeapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/rhymeapp/index.html -------------------------------------------------------------------------------- /experimental/s3/S3TestAuthorizationHeader.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/s3/S3TestAuthorizationHeader.ff -------------------------------------------------------------------------------- /experimental/s3/S3TestPut.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/s3/S3TestPut.ff -------------------------------------------------------------------------------- /experimental/site/.firefly/package.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/site/.firefly/package.ff -------------------------------------------------------------------------------- /experimental/site/ChatRoute.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/site/ChatRoute.ff -------------------------------------------------------------------------------- /experimental/site/Main.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/site/Main.ff -------------------------------------------------------------------------------- /experimental/site/RouteTools.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/site/RouteTools.ff -------------------------------------------------------------------------------- /experimental/site/Routes.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/site/Routes.ff -------------------------------------------------------------------------------- /experimental/site2/.firefly/package.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/site2/.firefly/package.ff -------------------------------------------------------------------------------- /experimental/site2/ChatRoomRoute.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/site2/ChatRoomRoute.ff -------------------------------------------------------------------------------- /experimental/site2/Html.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/site2/Html.ff -------------------------------------------------------------------------------- /experimental/site2/Main.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/site2/Main.ff -------------------------------------------------------------------------------- /experimental/site2/Router.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/site2/Router.ff -------------------------------------------------------------------------------- /experimental/terrain/Main.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/terrain/Main.ff -------------------------------------------------------------------------------- /experimental/terrain/Terrain.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/terrain/Terrain.ff -------------------------------------------------------------------------------- /experimental/terrain/Terrain2.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/terrain/Terrain2.ff -------------------------------------------------------------------------------- /experimental/tests/TestCancel.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/tests/TestCancel.ff -------------------------------------------------------------------------------- /experimental/tests/TestDate.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/tests/TestDate.ff -------------------------------------------------------------------------------- /experimental/tests/TestEmailAlertDateLogic.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/tests/TestEmailAlertDateLogic.ff -------------------------------------------------------------------------------- /experimental/tests/TestJson.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/experimental/tests/TestJson.ff -------------------------------------------------------------------------------- /fireflysite/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/.dockerignore -------------------------------------------------------------------------------- /fireflysite/.firefly/package.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/.firefly/package.ff -------------------------------------------------------------------------------- /fireflysite/CommunityOverview.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/CommunityOverview.ff -------------------------------------------------------------------------------- /fireflysite/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/Dockerfile -------------------------------------------------------------------------------- /fireflysite/DocumentParser.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/DocumentParser.ff -------------------------------------------------------------------------------- /fireflysite/FrontPage.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/FrontPage.ff -------------------------------------------------------------------------------- /fireflysite/GettingStarted.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/GettingStarted.ff -------------------------------------------------------------------------------- /fireflysite/Guide.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/Guide.ff -------------------------------------------------------------------------------- /fireflysite/Html.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/Html.ff -------------------------------------------------------------------------------- /fireflysite/Main.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/Main.ff -------------------------------------------------------------------------------- /fireflysite/Menu.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/Menu.ff -------------------------------------------------------------------------------- /fireflysite/PackagesOverview.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/PackagesOverview.ff -------------------------------------------------------------------------------- /fireflysite/Router.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/Router.ff -------------------------------------------------------------------------------- /fireflysite/Styles.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/Styles.ff -------------------------------------------------------------------------------- /fireflysite/Test.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/Test.ff -------------------------------------------------------------------------------- /fireflysite/Website.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/Website.ff -------------------------------------------------------------------------------- /fireflysite/assets/font/NotoSansMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/assets/font/NotoSansMono-Regular.ttf -------------------------------------------------------------------------------- /fireflysite/assets/font/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/assets/font/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf -------------------------------------------------------------------------------- /fireflysite/assets/font/gf-inter-latin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/assets/font/gf-inter-latin.woff2 -------------------------------------------------------------------------------- /fireflysite/assets/font/gf-noto-sans-mono-latin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/assets/font/gf-noto-sans-mono-latin.woff2 -------------------------------------------------------------------------------- /fireflysite/assets/font/gf-nunito-sans-latin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/assets/font/gf-nunito-sans-latin.woff2 -------------------------------------------------------------------------------- /fireflysite/assets/image/autocomplete-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/assets/image/autocomplete-small.png -------------------------------------------------------------------------------- /fireflysite/assets/image/autocomplete-small.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/assets/image/autocomplete-small.webp -------------------------------------------------------------------------------- /fireflysite/assets/image/autocomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/assets/image/autocomplete.png -------------------------------------------------------------------------------- /fireflysite/assets/image/edit-time-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/assets/image/edit-time-error.png -------------------------------------------------------------------------------- /fireflysite/assets/image/edit-time-error.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/assets/image/edit-time-error.webp -------------------------------------------------------------------------------- /fireflysite/assets/image/firefly-logo-notext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/assets/image/firefly-logo-notext.png -------------------------------------------------------------------------------- /fireflysite/assets/image/firefly-logo-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/assets/image/firefly-logo-yellow.png -------------------------------------------------------------------------------- /fireflysite/assets/image/firefly-logo-yellow.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/assets/image/firefly-logo-yellow.webp -------------------------------------------------------------------------------- /fireflysite/assets/markdown/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/assets/markdown/reference.md -------------------------------------------------------------------------------- /fireflysite/assets/markdown/reference/Exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/assets/markdown/reference/Exceptions.md -------------------------------------------------------------------------------- /fireflysite/assets/markdown/reference/base-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/assets/markdown/reference/base-types.md -------------------------------------------------------------------------------- /fireflysite/assets/markdown/reference/emitted-javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/assets/markdown/reference/emitted-javascript.md -------------------------------------------------------------------------------- /fireflysite/assets/markdown/reference/functions-and-methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/assets/markdown/reference/functions-and-methods.md -------------------------------------------------------------------------------- /fireflysite/assets/markdown/reference/javascript-interop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/assets/markdown/reference/javascript-interop.md -------------------------------------------------------------------------------- /fireflysite/assets/markdown/reference/modules-and-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/assets/markdown/reference/modules-and-packages.md -------------------------------------------------------------------------------- /fireflysite/assets/markdown/reference/pattern-matching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/assets/markdown/reference/pattern-matching.md -------------------------------------------------------------------------------- /fireflysite/assets/markdown/reference/statements-and-expressions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/assets/markdown/reference/statements-and-expressions.md -------------------------------------------------------------------------------- /fireflysite/assets/markdown/reference/structured-concurrency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/assets/markdown/reference/structured-concurrency.md -------------------------------------------------------------------------------- /fireflysite/assets/markdown/reference/traits-and-instances.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/assets/markdown/reference/traits-and-instances.md -------------------------------------------------------------------------------- /fireflysite/assets/markdown/reference/user-defined-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/assets/markdown/reference/user-defined-types.md -------------------------------------------------------------------------------- /fireflysite/assets/markdown/scratch/Toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/assets/markdown/scratch/Toc.md -------------------------------------------------------------------------------- /fireflysite/assets/markdown/scratch/control-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/assets/markdown/scratch/control-flow.md -------------------------------------------------------------------------------- /fireflysite/assets/markdown/scratch/old-structured-concurrency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/assets/markdown/scratch/old-structured-concurrency.md -------------------------------------------------------------------------------- /fireflysite/demos/CountingButtonDemo.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/demos/CountingButtonDemo.ff -------------------------------------------------------------------------------- /fireflysite/demos/ExamplesOverview.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/demos/ExamplesOverview.ff -------------------------------------------------------------------------------- /fireflysite/demos/MatchingPasswordsDemo.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/demos/MatchingPasswordsDemo.ff -------------------------------------------------------------------------------- /fireflysite/demos/PostgresqlDemo.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/demos/PostgresqlDemo.ff -------------------------------------------------------------------------------- /fireflysite/routes/RouteFront.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/routes/RouteFront.ff -------------------------------------------------------------------------------- /fireflysite/routes/RouteNonMarkdown.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/routes/RouteNonMarkdown.ff -------------------------------------------------------------------------------- /fireflysite/routes/RouteReference.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/fireflysite/routes/RouteReference.ff -------------------------------------------------------------------------------- /graph/.firefly/package.ff: -------------------------------------------------------------------------------- 1 | package ff:graph:0.0.0 2 | -------------------------------------------------------------------------------- /graph/Graph.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/graph/Graph.ff -------------------------------------------------------------------------------- /lsp/.firefly/package.ff: -------------------------------------------------------------------------------- 1 | dependency ff:compiler:0.0.0 2 | -------------------------------------------------------------------------------- /lsp/CompletionHandler.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/lsp/CompletionHandler.ff -------------------------------------------------------------------------------- /lsp/Handler.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/lsp/Handler.ff -------------------------------------------------------------------------------- /lsp/HoverHandler.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/lsp/HoverHandler.ff -------------------------------------------------------------------------------- /lsp/LanguageServer.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/lsp/LanguageServer.ff -------------------------------------------------------------------------------- /lsp/SignatureHelpHandler.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/lsp/SignatureHelpHandler.ff -------------------------------------------------------------------------------- /lsp/SymbolHandler.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/lsp/SymbolHandler.ff -------------------------------------------------------------------------------- /lsp/TestReferences.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/lsp/TestReferences.ff -------------------------------------------------------------------------------- /lsp/TestReferencesCase.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/lsp/TestReferencesCase.ff -------------------------------------------------------------------------------- /lsp/stderr.txt: -------------------------------------------------------------------------------- 1 | End of input while parsing request headers 2 | -------------------------------------------------------------------------------- /lsp/stdin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/lsp/stdin.txt -------------------------------------------------------------------------------- /lsp/stdout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/lsp/stdout.txt -------------------------------------------------------------------------------- /lux/.firefly/package.ff: -------------------------------------------------------------------------------- 1 | package ff:lux:0.0.0 2 | -------------------------------------------------------------------------------- /lux/Css.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/lux/Css.ff -------------------------------------------------------------------------------- /lux/CssTest.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/lux/CssTest.ff -------------------------------------------------------------------------------- /lux/Lux.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/lux/Lux.ff -------------------------------------------------------------------------------- /lux/LuxEvent.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/lux/LuxEvent.ff -------------------------------------------------------------------------------- /lux/Main.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/lux/Main.ff -------------------------------------------------------------------------------- /lux/Main2.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/lux/Main2.ff -------------------------------------------------------------------------------- /lux/TestDry.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/lux/TestDry.ff -------------------------------------------------------------------------------- /output/js/ff/compiler/Builder.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Builder.mjs -------------------------------------------------------------------------------- /output/js/ff/compiler/Builder.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Builder.mjs.map -------------------------------------------------------------------------------- /output/js/ff/compiler/Compiler.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Compiler.mjs -------------------------------------------------------------------------------- /output/js/ff/compiler/Compiler.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Compiler.mjs.map -------------------------------------------------------------------------------- /output/js/ff/compiler/Dependencies.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Dependencies.mjs -------------------------------------------------------------------------------- /output/js/ff/compiler/Dependencies.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Dependencies.mjs.map -------------------------------------------------------------------------------- /output/js/ff/compiler/DependencyLock.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/DependencyLock.mjs -------------------------------------------------------------------------------- /output/js/ff/compiler/DependencyLock.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/DependencyLock.mjs.map -------------------------------------------------------------------------------- /output/js/ff/compiler/Deriver.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Deriver.mjs -------------------------------------------------------------------------------- /output/js/ff/compiler/Deriver.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Deriver.mjs.map -------------------------------------------------------------------------------- /output/js/ff/compiler/DevelopMode.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/DevelopMode.mjs -------------------------------------------------------------------------------- /output/js/ff/compiler/DevelopMode.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/DevelopMode.mjs.map -------------------------------------------------------------------------------- /output/js/ff/compiler/Dictionaries.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Dictionaries.mjs -------------------------------------------------------------------------------- /output/js/ff/compiler/Dictionaries.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Dictionaries.mjs.map -------------------------------------------------------------------------------- /output/js/ff/compiler/Environment.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Environment.mjs -------------------------------------------------------------------------------- /output/js/ff/compiler/Environment.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Environment.mjs.map -------------------------------------------------------------------------------- /output/js/ff/compiler/Inference.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Inference.mjs -------------------------------------------------------------------------------- /output/js/ff/compiler/Inference.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Inference.mjs.map -------------------------------------------------------------------------------- /output/js/ff/compiler/JsEmitter.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/JsEmitter.mjs -------------------------------------------------------------------------------- /output/js/ff/compiler/JsEmitter.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/JsEmitter.mjs.map -------------------------------------------------------------------------------- /output/js/ff/compiler/JsImporter.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/JsImporter.mjs -------------------------------------------------------------------------------- /output/js/ff/compiler/JsImporter.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/JsImporter.mjs.map -------------------------------------------------------------------------------- /output/js/ff/compiler/LspHook.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/LspHook.mjs -------------------------------------------------------------------------------- /output/js/ff/compiler/LspHook.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/LspHook.mjs.map -------------------------------------------------------------------------------- /output/js/ff/compiler/Main.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Main.mjs -------------------------------------------------------------------------------- /output/js/ff/compiler/Main.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Main.mjs.map -------------------------------------------------------------------------------- /output/js/ff/compiler/Main.run.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Main.run.mjs -------------------------------------------------------------------------------- /output/js/ff/compiler/ModuleCache.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/ModuleCache.mjs -------------------------------------------------------------------------------- /output/js/ff/compiler/ModuleCache.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/ModuleCache.mjs.map -------------------------------------------------------------------------------- /output/js/ff/compiler/Parser.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Parser.mjs -------------------------------------------------------------------------------- /output/js/ff/compiler/Parser.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Parser.mjs.map -------------------------------------------------------------------------------- /output/js/ff/compiler/Patterns.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Patterns.mjs -------------------------------------------------------------------------------- /output/js/ff/compiler/Patterns.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Patterns.mjs.map -------------------------------------------------------------------------------- /output/js/ff/compiler/Resolver.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Resolver.mjs -------------------------------------------------------------------------------- /output/js/ff/compiler/Resolver.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Resolver.mjs.map -------------------------------------------------------------------------------- /output/js/ff/compiler/SourceMap.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/SourceMap.mjs -------------------------------------------------------------------------------- /output/js/ff/compiler/SourceMap.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/SourceMap.mjs.map -------------------------------------------------------------------------------- /output/js/ff/compiler/Substitution.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Substitution.mjs -------------------------------------------------------------------------------- /output/js/ff/compiler/Substitution.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Substitution.mjs.map -------------------------------------------------------------------------------- /output/js/ff/compiler/Syntax.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Syntax.mjs -------------------------------------------------------------------------------- /output/js/ff/compiler/Syntax.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Syntax.mjs.map -------------------------------------------------------------------------------- /output/js/ff/compiler/Token.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Token.mjs -------------------------------------------------------------------------------- /output/js/ff/compiler/Token.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Token.mjs.map -------------------------------------------------------------------------------- /output/js/ff/compiler/Tokenizer.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Tokenizer.mjs -------------------------------------------------------------------------------- /output/js/ff/compiler/Tokenizer.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Tokenizer.mjs.map -------------------------------------------------------------------------------- /output/js/ff/compiler/Unification.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Unification.mjs -------------------------------------------------------------------------------- /output/js/ff/compiler/Unification.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Unification.mjs.map -------------------------------------------------------------------------------- /output/js/ff/compiler/Wildcards.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Wildcards.mjs -------------------------------------------------------------------------------- /output/js/ff/compiler/Wildcards.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Wildcards.mjs.map -------------------------------------------------------------------------------- /output/js/ff/compiler/Workspace.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Workspace.mjs -------------------------------------------------------------------------------- /output/js/ff/compiler/Workspace.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/compiler/Workspace.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Any.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Any.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Any.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Any.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Array.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Array.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Array.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Array.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/AssetSystem.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/AssetSystem.mjs -------------------------------------------------------------------------------- /output/js/ff/core/AssetSystem.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/AssetSystem.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Atomic.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Atomic.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Atomic.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Atomic.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Bool.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Bool.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Bool.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Bool.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/BrowserSystem.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/BrowserSystem.mjs -------------------------------------------------------------------------------- /output/js/ff/core/BrowserSystem.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/BrowserSystem.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Buffer.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Buffer.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Buffer.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Buffer.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/BuildSystem.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/BuildSystem.mjs -------------------------------------------------------------------------------- /output/js/ff/core/BuildSystem.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/BuildSystem.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Channel.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Channel.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Channel.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Channel.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Char.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Char.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Char.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Char.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Core.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Core.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Core.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Core.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Crypto.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Crypto.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Crypto.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Crypto.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Date.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Date.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Date.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Date.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Duration.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Duration.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Duration.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Duration.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Equal.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Equal.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Equal.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Equal.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Error.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Error.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Error.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Error.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/FileHandle.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/FileHandle.mjs -------------------------------------------------------------------------------- /output/js/ff/core/FileHandle.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/FileHandle.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Float.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Float.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Float.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Float.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/HttpClient.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/HttpClient.mjs -------------------------------------------------------------------------------- /output/js/ff/core/HttpClient.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/HttpClient.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Int.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Int.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Int.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Int.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/IntMap.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/IntMap.mjs -------------------------------------------------------------------------------- /output/js/ff/core/IntMap.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/IntMap.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Js.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Js.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Js.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Js.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/JsSystem.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/JsSystem.mjs -------------------------------------------------------------------------------- /output/js/ff/core/JsSystem.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/JsSystem.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/JsValue.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/JsValue.mjs -------------------------------------------------------------------------------- /output/js/ff/core/JsValue.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/JsValue.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Json.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Json.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Json.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Json.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/List.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/List.mjs -------------------------------------------------------------------------------- /output/js/ff/core/List.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/List.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Lock.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Lock.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Lock.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Lock.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Log.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Log.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Log.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Log.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Map.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Map.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Map.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Map.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/NodeSystem.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/NodeSystem.mjs -------------------------------------------------------------------------------- /output/js/ff/core/NodeSystem.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/NodeSystem.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Nothing.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Nothing.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Nothing.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Nothing.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Option.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Option.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Option.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Option.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Ordering.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Ordering.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Ordering.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Ordering.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Pair.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Pair.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Pair.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Pair.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Path.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Path.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Path.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Path.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Queue.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Queue.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Queue.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Queue.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Random.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Random.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Random.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Random.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/RbMap.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/RbMap.mjs -------------------------------------------------------------------------------- /output/js/ff/core/RbMap.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/RbMap.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Serializable.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Serializable.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Serializable.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Serializable.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Set.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Set.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Set.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Set.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Show.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Show.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Show.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Show.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/SourceLocation.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/SourceLocation.mjs -------------------------------------------------------------------------------- /output/js/ff/core/SourceLocation.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/SourceLocation.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Stream.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Stream.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Stream.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Stream.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/String.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/String.mjs -------------------------------------------------------------------------------- /output/js/ff/core/String.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/String.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/StringMap.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/StringMap.mjs -------------------------------------------------------------------------------- /output/js/ff/core/StringMap.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/StringMap.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Task.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Task.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Task.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Task.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Try.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Try.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Try.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Try.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/Unit.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Unit.mjs -------------------------------------------------------------------------------- /output/js/ff/core/Unit.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/output/js/ff/core/Unit.mjs.map -------------------------------------------------------------------------------- /output/js/ff/core/node_modules: -------------------------------------------------------------------------------- 1 | /Users/ahnfelt/Downloads/firefly-boot/core/.firefly/include/node_modules -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/package.json -------------------------------------------------------------------------------- /postgresql/.firefly/include/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/postgresql/.firefly/include/package.json -------------------------------------------------------------------------------- /postgresql/.firefly/package.ff: -------------------------------------------------------------------------------- 1 | package ff:postgresql:0.0.0 2 | include "node_modules" 3 | -------------------------------------------------------------------------------- /postgresql/Pg.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/postgresql/Pg.ff -------------------------------------------------------------------------------- /rpc/.firefly/package.ff: -------------------------------------------------------------------------------- 1 | package ff:rpc:0.0.0 2 | -------------------------------------------------------------------------------- /rpc/Rpc.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/rpc/Rpc.ff -------------------------------------------------------------------------------- /s3/.firefly/package.ff: -------------------------------------------------------------------------------- 1 | package ff:s3:0.0.0 2 | -------------------------------------------------------------------------------- /s3/S3.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/s3/S3.ff -------------------------------------------------------------------------------- /vscode/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/vscode/.vscode/launch.json -------------------------------------------------------------------------------- /vscode/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/vscode/.vscode/tasks.json -------------------------------------------------------------------------------- /vscode/.vscodeignore: -------------------------------------------------------------------------------- 1 | **/ff/core/node_modules 2 | -------------------------------------------------------------------------------- /vscode/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/vscode/LICENSE.txt -------------------------------------------------------------------------------- /vscode/Prepublish.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/vscode/Prepublish.ff -------------------------------------------------------------------------------- /vscode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/vscode/README.md -------------------------------------------------------------------------------- /vscode/client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/vscode/client/package-lock.json -------------------------------------------------------------------------------- /vscode/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/vscode/client/package.json -------------------------------------------------------------------------------- /vscode/client/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/vscode/client/src/extension.ts -------------------------------------------------------------------------------- /vscode/client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/vscode/client/tsconfig.json -------------------------------------------------------------------------------- /vscode/icons/firefly-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/vscode/icons/firefly-icon.png -------------------------------------------------------------------------------- /vscode/icons/firefly-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/vscode/icons/firefly-icon.svg -------------------------------------------------------------------------------- /vscode/icons/firefly-logo-notext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/vscode/icons/firefly-logo-notext.png -------------------------------------------------------------------------------- /vscode/icons/firefly-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/vscode/icons/firefly-logo.png -------------------------------------------------------------------------------- /vscode/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/vscode/language-configuration.json -------------------------------------------------------------------------------- /vscode/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/vscode/package-lock.json -------------------------------------------------------------------------------- /vscode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/vscode/package.json -------------------------------------------------------------------------------- /vscode/snippets-none.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /vscode/snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/vscode/snippets.json -------------------------------------------------------------------------------- /vscode/syntaxes/firefly-markdown-injection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/vscode/syntaxes/firefly-markdown-injection.json -------------------------------------------------------------------------------- /vscode/syntaxes/firefly.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/vscode/syntaxes/firefly.tmLanguage.json -------------------------------------------------------------------------------- /vscode/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/vscode/tsconfig.json -------------------------------------------------------------------------------- /webserver/.firefly/include/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/webserver/.firefly/include/package-lock.json -------------------------------------------------------------------------------- /webserver/.firefly/include/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/webserver/.firefly/include/package.json -------------------------------------------------------------------------------- /webserver/.firefly/package.ff: -------------------------------------------------------------------------------- 1 | package ff:webserver:0.0.0 2 | include "node_modules" 3 | -------------------------------------------------------------------------------- /webserver/WebRoute.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/webserver/WebRoute.ff -------------------------------------------------------------------------------- /webserver/WebServer.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/webserver/WebServer.ff -------------------------------------------------------------------------------- /websocket/.firefly/package.ff: -------------------------------------------------------------------------------- 1 | package ff:websocket:0.0.0 2 | -------------------------------------------------------------------------------- /websocket/WebSocket.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahnfelt/firefly-boot/HEAD/websocket/WebSocket.ff --------------------------------------------------------------------------------