├── .github └── workflows │ └── main.yml ├── .gitignore ├── .travis.yml ├── Doxyfile ├── Makefile ├── README.md ├── ccan ├── asprintf │ ├── LICENSE │ ├── _info │ ├── asprintf.c │ └── asprintf.h └── compiler │ ├── LICENSE │ ├── _info │ └── compiler.h ├── config.h ├── ctests └── main.c ├── licenses ├── BSD-MIT └── CC0 ├── mk └── target.mk ├── package-sets ├── mkPackage.dhall └── packages.dhall ├── package.json ├── packages.dhall ├── purec.suppr ├── runtime ├── purescript.c └── purescript.h ├── scripts └── bower-depgraph ├── spago.dhall ├── src ├── Language │ └── PureScript │ │ ├── CodeGen │ │ ├── C.purs │ │ ├── C │ │ │ ├── AST.purs │ │ │ ├── AST │ │ │ │ └── Common.purs │ │ │ ├── Common.purs │ │ │ ├── Constants.purs │ │ │ ├── File.purs │ │ │ ├── Optimizer.purs │ │ │ ├── Optimizer │ │ │ │ ├── Blocks.purs │ │ │ │ ├── Common.purs │ │ │ │ ├── Inliner.purs │ │ │ │ ├── MagicDo.purs │ │ │ │ ├── TCO.purs │ │ │ │ └── Unused.purs │ │ │ ├── Pretty.purs │ │ │ ├── Printer.purs │ │ │ ├── Transforms.purs │ │ │ ├── Traversals.purs │ │ │ └── Types.purs │ │ ├── Common.purs │ │ ├── CompileError.purs │ │ ├── Runtime.purs │ │ └── SupplyT.purs │ │ └── Constants.purs ├── Main.js └── Main.purs ├── test ├── Main.purs ├── Upstream.purs ├── Utils.js └── Utils.purs ├── tests ├── 00-basic │ ├── .gitignore │ ├── Makefile │ ├── packages.dhall │ ├── spago.dhall │ └── src │ │ └── Main.purs ├── 01-partialfuns │ ├── .gitignore │ ├── Makefile │ ├── packages.dhall │ ├── spago.dhall │ └── src │ │ └── Main.purs ├── 02-foreign │ ├── .gitignore │ ├── Makefile │ ├── packages.dhall │ ├── spago.dhall │ └── src │ │ ├── Main.c │ │ ├── Main.h │ │ └── Main.purs ├── 03-mutrec │ ├── .gitignore │ ├── Makefile │ ├── packages.dhall │ ├── spago.dhall │ └── src │ │ └── Main.purs ├── 04-memory │ ├── .gitignore │ ├── Makefile │ ├── packages.dhall │ ├── spago.dhall │ └── src │ │ ├── Main.c │ │ ├── Main.h │ │ └── Main.purs ├── 05-datacons │ ├── .gitignore │ ├── Makefile │ ├── packages.dhall │ ├── spago.dhall │ └── src │ │ └── Main.purs ├── 06-typeclasses │ ├── .gitignore │ ├── Makefile │ ├── packages.dhall │ ├── spago.dhall │ └── src │ │ └── Main.purs ├── 10-prelude │ ├── Makefile │ ├── spago.dhall │ └── src │ │ ├── Main.h │ │ └── Main.purs ├── 11-effects │ ├── Makefile │ ├── spago.dhall │ └── src │ │ ├── Main.h │ │ └── Main.purs ├── 12-rec-fns │ ├── Makefile │ ├── spago.dhall │ └── src │ │ └── Main.purs └── main.stub.c ├── upstream └── tests │ ├── purs │ └── passing │ │ ├── 2018 │ │ ├── A.purs │ │ └── B.purs │ │ ├── 2138 │ │ └── Lib.purs │ │ ├── 2609 │ │ └── Eg.purs │ │ ├── 3114 │ │ └── VendoredVariant.purs │ │ ├── 1110.purs │ │ ├── 1185.purs │ │ ├── 1335.purs │ │ ├── 1570.purs │ │ ├── 1664.purs │ │ ├── 1697.purs │ │ ├── 1807.purs │ │ ├── 1881.purs │ │ ├── 1991.purs │ │ ├── 2018.purs │ │ ├── 2049.purs │ │ ├── 2136.purs │ │ ├── 2138.purs │ │ ├── 2172.c │ │ ├── 2172.h │ │ ├── 2172.js │ │ ├── 2172.purs │ │ ├── 2197-1.purs │ │ ├── 2197-2.purs │ │ ├── 2252.purs │ │ ├── 2288.purs │ │ ├── 2378.purs │ │ ├── 2438.purs │ │ ├── 2609.purs │ │ ├── 2616.purs │ │ ├── 2626.purs │ │ ├── 2663.purs │ │ ├── 2689.purs │ │ ├── 2756.purs │ │ ├── 2787.purs │ │ ├── 2795.purs │ │ ├── 2803.purs │ │ ├── 2806.purs │ │ ├── 2947.purs │ │ ├── 2958.purs │ │ ├── 2972.purs │ │ ├── 3114.purs │ │ ├── 3125.purs │ │ ├── 3187-UnusedNameClash.purs │ │ ├── 652.purs │ │ ├── 810.purs │ │ ├── 862.purs │ │ ├── 922.purs │ │ ├── Ado.purs │ │ ├── AppendInReverse.purs │ │ ├── Applicative.purs │ │ ├── ArrayType.purs │ │ ├── Auto.purs │ │ ├── AutoPrelude.purs │ │ ├── AutoPrelude2.purs │ │ ├── BindersInFunctions.purs │ │ ├── BindingGroups.purs │ │ ├── BlockString.purs │ │ ├── CaseInDo.purs │ │ ├── CaseInputWildcard.purs │ │ ├── CaseMultipleExpressions.purs │ │ ├── CaseStatement.purs │ │ ├── CheckFunction.purs │ │ ├── CheckSynonymBug.purs │ │ ├── CheckTypeClass.purs │ │ ├── Church.purs │ │ ├── ClassRefSyntax.purs │ │ ├── ClassRefSyntax │ │ └── Lib.purs │ │ ├── Collatz.purs │ │ ├── Comparisons.purs │ │ ├── Conditional.purs │ │ ├── Console.purs │ │ ├── ConstraintInference.purs │ │ ├── ConstraintParens.purs │ │ ├── ConstraintParsingIssue.purs │ │ ├── ContextSimplification.purs │ │ ├── DataAndType.purs │ │ ├── DataConsClassConsOverlapOk.purs │ │ ├── DctorName.purs │ │ ├── DctorOperatorAlias.purs │ │ ├── DctorOperatorAlias │ │ └── List.purs │ │ ├── DeepArrayBinder.purs │ │ ├── DeepCase.purs │ │ ├── DeriveNewtype.purs │ │ ├── DeriveWithNestedSynonyms.purs │ │ ├── Deriving.purs │ │ ├── DerivingFunctor.purs │ │ ├── Do.purs │ │ ├── Dollar.purs │ │ ├── DuplicateProperties.purs │ │ ├── EffFn.c │ │ ├── EffFn.h │ │ ├── EffFn.js │ │ ├── EffFn.purs │ │ ├── EmptyDataDecls.purs │ │ ├── EmptyRow.purs │ │ ├── EmptyTypeClass.purs │ │ ├── EntailsKindedType.purs │ │ ├── Eq1Deriving.purs │ │ ├── Eq1InEqDeriving.purs │ │ ├── EqOrd.purs │ │ ├── ExplicitImportReExport.purs │ │ ├── ExplicitImportReExport │ │ ├── Bar.purs │ │ └── Foo.purs │ │ ├── ExplicitOperatorSections.purs │ │ ├── ExportExplicit.purs │ │ ├── ExportExplicit │ │ └── M1.purs │ │ ├── ExportExplicit2.purs │ │ ├── ExportExplicit2 │ │ └── M1.purs │ │ ├── ExportedInstanceDeclarations.purs │ │ ├── ExtendedInfixOperators.purs │ │ ├── Fib.purs │ │ ├── FieldConsPuns.purs │ │ ├── FieldPuns.purs │ │ ├── FinalTagless.purs │ │ ├── ForeignKind.purs │ │ ├── ForeignKind │ │ └── Lib.purs │ │ ├── FunWithFunDeps.c │ │ ├── FunWithFunDeps.h │ │ ├── FunWithFunDeps.js │ │ ├── FunWithFunDeps.purs │ │ ├── FunctionScope.purs │ │ ├── FunctionalDependencies.purs │ │ ├── Functions.purs │ │ ├── Functions2.purs │ │ ├── Generalization1.purs │ │ ├── GenericsRep.purs │ │ ├── Guards.purs │ │ ├── HasOwnProperty.purs │ │ ├── HoistError.purs │ │ ├── IfThenElseMaybe.purs │ │ ├── IfWildcard.purs │ │ ├── ImplicitEmptyImport.purs │ │ ├── ImportExplicit.purs │ │ ├── ImportExplicit │ │ └── M1.purs │ │ ├── ImportHiding.purs │ │ ├── ImportQualified.purs │ │ ├── ImportQualified │ │ └── M1.purs │ │ ├── InferRecFunWithConstrainedArgument.purs │ │ ├── InstanceBeforeClass.purs │ │ ├── InstanceChain.purs │ │ ├── InstanceSigs.purs │ │ ├── InstanceSigsGeneral.purs │ │ ├── IntAndChar.purs │ │ ├── JSReserved.purs │ │ ├── KindedType.purs │ │ ├── LargeSumType.purs │ │ ├── Let.purs │ │ ├── Let2.purs │ │ ├── LetInInstance.purs │ │ ├── LetPattern.purs │ │ ├── LiberalTypeSynonyms.purs │ │ ├── MPTCs.purs │ │ ├── Match.purs │ │ ├── Module.purs │ │ ├── Module │ │ ├── M1.purs │ │ └── M2.purs │ │ ├── ModuleDeps.purs │ │ ├── ModuleDeps │ │ ├── M1.purs │ │ ├── M2.purs │ │ └── M3.purs │ │ ├── ModuleExport.purs │ │ ├── ModuleExport │ │ └── A.purs │ │ ├── ModuleExportDupes.purs │ │ ├── ModuleExportDupes │ │ ├── A.purs │ │ ├── B.purs │ │ └── C.purs │ │ ├── ModuleExportExcluded.purs │ │ ├── ModuleExportExcluded │ │ └── A.purs │ │ ├── ModuleExportQualified.purs │ │ ├── ModuleExportQualified │ │ └── A.purs │ │ ├── ModuleExportSelf.purs │ │ ├── ModuleExportSelf │ │ └── A.purs │ │ ├── Monad.purs │ │ ├── MonadState.purs │ │ ├── MultiArgFunctions.purs │ │ ├── MutRec.purs │ │ ├── MutRec2.purs │ │ ├── MutRec3.purs │ │ ├── NakedConstraint.purs │ │ ├── NamedPatterns.purs │ │ ├── NegativeBinder.purs │ │ ├── NegativeIntInRange.purs │ │ ├── Nested.purs │ │ ├── NestedRecordUpdate.purs │ │ ├── NestedRecordUpdateWildcards.purs │ │ ├── NestedTypeSynonyms.purs │ │ ├── NestedWhere.purs │ │ ├── NewConsClass.purs │ │ ├── Newtype.purs │ │ ├── NewtypeClass.purs │ │ ├── NewtypeEff.purs │ │ ├── NewtypeInstance.purs │ │ ├── NewtypeWithRecordUpdate.purs │ │ ├── NonConflictingExports.purs │ │ ├── NonConflictingExports │ │ └── A.purs │ │ ├── NonOrphanInstanceFunDepExtra.purs │ │ ├── NonOrphanInstanceFunDepExtra │ │ └── Lib.purs │ │ ├── NonOrphanInstanceMulti.purs │ │ ├── NonOrphanInstanceMulti │ │ └── Lib.purs │ │ ├── NumberLiterals.purs │ │ ├── ObjectGetter.purs │ │ ├── ObjectSynonym.purs │ │ ├── ObjectUpdate.purs │ │ ├── ObjectUpdate2.purs │ │ ├── ObjectUpdater.purs │ │ ├── ObjectWildcards.purs │ │ ├── Objects.purs │ │ ├── OneConstructor.purs │ │ ├── OperatorAlias.purs │ │ ├── OperatorAliasElsewhere.purs │ │ ├── OperatorAliasElsewhere │ │ └── Def.purs │ │ ├── OperatorAssociativity.purs │ │ ├── OperatorInlining.purs │ │ ├── OperatorSections.purs │ │ ├── Operators.purs │ │ ├── Operators │ │ └── Other.purs │ │ ├── OptimizerBug.purs │ │ ├── OptionalQualified.purs │ │ ├── Ord1Deriving.purs │ │ ├── Ord1InOrdDeriving.purs │ │ ├── ParensInType.purs │ │ ├── ParensInTypedBinder.purs │ │ ├── PartialFunction.purs │ │ ├── Patterns.purs │ │ ├── PendingConflictingImports.purs │ │ ├── PendingConflictingImports │ │ ├── A.purs │ │ └── B.purs │ │ ├── PendingConflictingImports2.purs │ │ ├── PendingConflictingImports2 │ │ └── A.purs │ │ ├── Person.purs │ │ ├── PolyLabels.c │ │ ├── PolyLabels.h │ │ ├── PolyLabels.js │ │ ├── PolyLabels.purs │ │ ├── PrimedTypeName.purs │ │ ├── QualifiedNames.purs │ │ ├── QualifiedNames │ │ └── Either.purs │ │ ├── QualifiedQualifiedImports.purs │ │ ├── Rank2Object.purs │ │ ├── Rank2TypeSynonym.purs │ │ ├── Rank2Types.purs │ │ ├── ReExportQualified.purs │ │ ├── ReExportQualified │ │ ├── A.purs │ │ ├── B.purs │ │ └── C.purs │ │ ├── RebindableSyntax.purs │ │ ├── Recursion.purs │ │ ├── RedefinedFixity.purs │ │ ├── RedefinedFixity │ │ ├── M1.purs │ │ ├── M2.purs │ │ └── M3.purs │ │ ├── ReservedWords.purs │ │ ├── ResolvableScopeConflict.purs │ │ ├── ResolvableScopeConflict │ │ ├── A.purs │ │ └── B.purs │ │ ├── ResolvableScopeConflict2.purs │ │ ├── ResolvableScopeConflict2 │ │ └── A.purs │ │ ├── ResolvableScopeConflict3.purs │ │ ├── ResolvableScopeConflict3 │ │ └── A.purs │ │ ├── RowConstructors.purs │ │ ├── RowInInstanceHeadDetermined.purs │ │ ├── RowLacks.purs │ │ ├── RowNub.purs │ │ ├── RowPolyInstanceContext.purs │ │ ├── RowUnion.c │ │ ├── RowUnion.h │ │ ├── RowUnion.js │ │ ├── RowUnion.purs │ │ ├── RowsInInstanceContext.purs │ │ ├── RunFnInline.purs │ │ ├── RuntimeScopeIssue.purs │ │ ├── ScopedTypeVariables.purs │ │ ├── Sequence.purs │ │ ├── SequenceDesugared.purs │ │ ├── ShadowedModuleName.purs │ │ ├── ShadowedModuleName │ │ └── Test.purs │ │ ├── ShadowedName.purs │ │ ├── ShadowedRename.purs │ │ ├── ShadowedTCO.purs │ │ ├── ShadowedTCOLet.purs │ │ ├── SignedNumericLiterals.purs │ │ ├── SolvingAppendSymbol.purs │ │ ├── SolvingCompareSymbol.purs │ │ ├── SolvingIsSymbol.purs │ │ ├── SolvingIsSymbol │ │ └── Lib.purs │ │ ├── Stream.purs │ │ ├── StringEdgeCases.purs │ │ ├── StringEdgeCases │ │ ├── Records.purs │ │ └── Symbols.purs │ │ ├── StringEscapes.purs │ │ ├── Superclasses1.purs │ │ ├── Superclasses3.purs │ │ ├── TCO.purs │ │ ├── TCOCase.purs │ │ ├── TailCall.purs │ │ ├── Tick.purs │ │ ├── TopLevelCase.purs │ │ ├── TransitiveImport.purs │ │ ├── TransitiveImport │ │ ├── Middle.purs │ │ └── Test.purs │ │ ├── TypeClassMemberOrderChange.purs │ │ ├── TypeClasses.purs │ │ ├── TypeClassesInOrder.purs │ │ ├── TypeClassesWithOverlappingTypeVariables.purs │ │ ├── TypeDecl.purs │ │ ├── TypeOperators.purs │ │ ├── TypeOperators │ │ └── A.purs │ │ ├── TypeSynonymInData.purs │ │ ├── TypeSynonyms.purs │ │ ├── TypeWildcards.purs │ │ ├── TypeWildcardsRecordExtension.purs │ │ ├── TypeWithoutParens.purs │ │ ├── TypeWithoutParens │ │ └── Lib.purs │ │ ├── TypedBinders.purs │ │ ├── TypedWhere.purs │ │ ├── UTF8Sourcefile.purs │ │ ├── UnderscoreIdent.purs │ │ ├── UnicodeIdentifier.purs │ │ ├── UnicodeOperators.purs │ │ ├── UnicodeType.purs │ │ ├── UnifyInTypeInstanceLookup.purs │ │ ├── Unit.purs │ │ ├── UnknownInTypeClassLookup.purs │ │ ├── UnsafeCoerce.purs │ │ ├── UntupledConstraints.purs │ │ ├── UsableTypeClassMethods.purs │ │ ├── Where.purs │ │ ├── WildcardInInstance.purs │ │ ├── WildcardType.purs │ │ ├── iota.purs │ │ └── s.purs │ └── support │ ├── .gitignore │ └── spago.dhall └── vendor ├── asprintf.h ├── utf8.h ├── uthash.h ├── vec.c └── vec.h /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/.travis.yml -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/Doxyfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/README.md -------------------------------------------------------------------------------- /ccan/asprintf/LICENSE: -------------------------------------------------------------------------------- 1 | ../../licenses/BSD-MIT -------------------------------------------------------------------------------- /ccan/asprintf/_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/ccan/asprintf/_info -------------------------------------------------------------------------------- /ccan/asprintf/asprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/ccan/asprintf/asprintf.c -------------------------------------------------------------------------------- /ccan/asprintf/asprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/ccan/asprintf/asprintf.h -------------------------------------------------------------------------------- /ccan/compiler/LICENSE: -------------------------------------------------------------------------------- 1 | ../../licenses/CC0 -------------------------------------------------------------------------------- /ccan/compiler/_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/ccan/compiler/_info -------------------------------------------------------------------------------- /ccan/compiler/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/ccan/compiler/compiler.h -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ctests/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/ctests/main.c -------------------------------------------------------------------------------- /licenses/BSD-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/licenses/BSD-MIT -------------------------------------------------------------------------------- /licenses/CC0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/licenses/CC0 -------------------------------------------------------------------------------- /mk/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/mk/target.mk -------------------------------------------------------------------------------- /package-sets/mkPackage.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/package-sets/mkPackage.dhall -------------------------------------------------------------------------------- /package-sets/packages.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/package-sets/packages.dhall -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/package.json -------------------------------------------------------------------------------- /packages.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/packages.dhall -------------------------------------------------------------------------------- /purec.suppr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/purec.suppr -------------------------------------------------------------------------------- /runtime/purescript.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/runtime/purescript.c -------------------------------------------------------------------------------- /runtime/purescript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/runtime/purescript.h -------------------------------------------------------------------------------- /scripts/bower-depgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/scripts/bower-depgraph -------------------------------------------------------------------------------- /spago.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/spago.dhall -------------------------------------------------------------------------------- /src/Language/PureScript/CodeGen/C.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/src/Language/PureScript/CodeGen/C.purs -------------------------------------------------------------------------------- /src/Language/PureScript/CodeGen/C/AST.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/src/Language/PureScript/CodeGen/C/AST.purs -------------------------------------------------------------------------------- /src/Language/PureScript/CodeGen/C/AST/Common.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/src/Language/PureScript/CodeGen/C/AST/Common.purs -------------------------------------------------------------------------------- /src/Language/PureScript/CodeGen/C/Common.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/src/Language/PureScript/CodeGen/C/Common.purs -------------------------------------------------------------------------------- /src/Language/PureScript/CodeGen/C/Constants.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/src/Language/PureScript/CodeGen/C/Constants.purs -------------------------------------------------------------------------------- /src/Language/PureScript/CodeGen/C/File.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/src/Language/PureScript/CodeGen/C/File.purs -------------------------------------------------------------------------------- /src/Language/PureScript/CodeGen/C/Optimizer.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/src/Language/PureScript/CodeGen/C/Optimizer.purs -------------------------------------------------------------------------------- /src/Language/PureScript/CodeGen/C/Optimizer/Blocks.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/src/Language/PureScript/CodeGen/C/Optimizer/Blocks.purs -------------------------------------------------------------------------------- /src/Language/PureScript/CodeGen/C/Optimizer/Common.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/src/Language/PureScript/CodeGen/C/Optimizer/Common.purs -------------------------------------------------------------------------------- /src/Language/PureScript/CodeGen/C/Optimizer/Inliner.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/src/Language/PureScript/CodeGen/C/Optimizer/Inliner.purs -------------------------------------------------------------------------------- /src/Language/PureScript/CodeGen/C/Optimizer/MagicDo.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/src/Language/PureScript/CodeGen/C/Optimizer/MagicDo.purs -------------------------------------------------------------------------------- /src/Language/PureScript/CodeGen/C/Optimizer/TCO.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/src/Language/PureScript/CodeGen/C/Optimizer/TCO.purs -------------------------------------------------------------------------------- /src/Language/PureScript/CodeGen/C/Optimizer/Unused.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/src/Language/PureScript/CodeGen/C/Optimizer/Unused.purs -------------------------------------------------------------------------------- /src/Language/PureScript/CodeGen/C/Pretty.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/src/Language/PureScript/CodeGen/C/Pretty.purs -------------------------------------------------------------------------------- /src/Language/PureScript/CodeGen/C/Printer.purs: -------------------------------------------------------------------------------- 1 | module Language.PureScript.CodeGen.C.Printer 2 | where 3 | 4 | import Prelude 5 | -------------------------------------------------------------------------------- /src/Language/PureScript/CodeGen/C/Transforms.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/src/Language/PureScript/CodeGen/C/Transforms.purs -------------------------------------------------------------------------------- /src/Language/PureScript/CodeGen/C/Traversals.purs: -------------------------------------------------------------------------------- 1 | module Language.PureScript.CodeGen.C.Traversals where 2 | -------------------------------------------------------------------------------- /src/Language/PureScript/CodeGen/C/Types.purs: -------------------------------------------------------------------------------- 1 | module Language.PureScript.CodeGen.C.Types where 2 | -------------------------------------------------------------------------------- /src/Language/PureScript/CodeGen/Common.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/src/Language/PureScript/CodeGen/Common.purs -------------------------------------------------------------------------------- /src/Language/PureScript/CodeGen/CompileError.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/src/Language/PureScript/CodeGen/CompileError.purs -------------------------------------------------------------------------------- /src/Language/PureScript/CodeGen/Runtime.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/src/Language/PureScript/CodeGen/Runtime.purs -------------------------------------------------------------------------------- /src/Language/PureScript/CodeGen/SupplyT.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/src/Language/PureScript/CodeGen/SupplyT.purs -------------------------------------------------------------------------------- /src/Language/PureScript/Constants.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/src/Language/PureScript/Constants.purs -------------------------------------------------------------------------------- /src/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/src/Main.js -------------------------------------------------------------------------------- /src/Main.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/src/Main.purs -------------------------------------------------------------------------------- /test/Main.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/test/Main.purs -------------------------------------------------------------------------------- /test/Upstream.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/test/Upstream.purs -------------------------------------------------------------------------------- /test/Utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/test/Utils.js -------------------------------------------------------------------------------- /test/Utils.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/test/Utils.purs -------------------------------------------------------------------------------- /tests/00-basic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/00-basic/.gitignore -------------------------------------------------------------------------------- /tests/00-basic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/00-basic/Makefile -------------------------------------------------------------------------------- /tests/00-basic/packages.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/00-basic/packages.dhall -------------------------------------------------------------------------------- /tests/00-basic/spago.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/00-basic/spago.dhall -------------------------------------------------------------------------------- /tests/00-basic/src/Main.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/00-basic/src/Main.purs -------------------------------------------------------------------------------- /tests/01-partialfuns/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/01-partialfuns/.gitignore -------------------------------------------------------------------------------- /tests/01-partialfuns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/01-partialfuns/Makefile -------------------------------------------------------------------------------- /tests/01-partialfuns/packages.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/01-partialfuns/packages.dhall -------------------------------------------------------------------------------- /tests/01-partialfuns/spago.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/01-partialfuns/spago.dhall -------------------------------------------------------------------------------- /tests/01-partialfuns/src/Main.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/01-partialfuns/src/Main.purs -------------------------------------------------------------------------------- /tests/02-foreign/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/02-foreign/.gitignore -------------------------------------------------------------------------------- /tests/02-foreign/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/02-foreign/Makefile -------------------------------------------------------------------------------- /tests/02-foreign/packages.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/02-foreign/packages.dhall -------------------------------------------------------------------------------- /tests/02-foreign/spago.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/02-foreign/spago.dhall -------------------------------------------------------------------------------- /tests/02-foreign/src/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/02-foreign/src/Main.c -------------------------------------------------------------------------------- /tests/02-foreign/src/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/02-foreign/src/Main.h -------------------------------------------------------------------------------- /tests/02-foreign/src/Main.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/02-foreign/src/Main.purs -------------------------------------------------------------------------------- /tests/03-mutrec/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/03-mutrec/.gitignore -------------------------------------------------------------------------------- /tests/03-mutrec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/03-mutrec/Makefile -------------------------------------------------------------------------------- /tests/03-mutrec/packages.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/03-mutrec/packages.dhall -------------------------------------------------------------------------------- /tests/03-mutrec/spago.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/03-mutrec/spago.dhall -------------------------------------------------------------------------------- /tests/03-mutrec/src/Main.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/03-mutrec/src/Main.purs -------------------------------------------------------------------------------- /tests/04-memory/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/04-memory/.gitignore -------------------------------------------------------------------------------- /tests/04-memory/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/04-memory/Makefile -------------------------------------------------------------------------------- /tests/04-memory/packages.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/04-memory/packages.dhall -------------------------------------------------------------------------------- /tests/04-memory/spago.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/04-memory/spago.dhall -------------------------------------------------------------------------------- /tests/04-memory/src/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/04-memory/src/Main.c -------------------------------------------------------------------------------- /tests/04-memory/src/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/04-memory/src/Main.h -------------------------------------------------------------------------------- /tests/04-memory/src/Main.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/04-memory/src/Main.purs -------------------------------------------------------------------------------- /tests/05-datacons/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/05-datacons/.gitignore -------------------------------------------------------------------------------- /tests/05-datacons/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/05-datacons/Makefile -------------------------------------------------------------------------------- /tests/05-datacons/packages.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/05-datacons/packages.dhall -------------------------------------------------------------------------------- /tests/05-datacons/spago.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/05-datacons/spago.dhall -------------------------------------------------------------------------------- /tests/05-datacons/src/Main.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/05-datacons/src/Main.purs -------------------------------------------------------------------------------- /tests/06-typeclasses/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/06-typeclasses/.gitignore -------------------------------------------------------------------------------- /tests/06-typeclasses/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/06-typeclasses/Makefile -------------------------------------------------------------------------------- /tests/06-typeclasses/packages.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/06-typeclasses/packages.dhall -------------------------------------------------------------------------------- /tests/06-typeclasses/spago.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/06-typeclasses/spago.dhall -------------------------------------------------------------------------------- /tests/06-typeclasses/src/Main.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/06-typeclasses/src/Main.purs -------------------------------------------------------------------------------- /tests/10-prelude/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/10-prelude/Makefile -------------------------------------------------------------------------------- /tests/10-prelude/spago.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/10-prelude/spago.dhall -------------------------------------------------------------------------------- /tests/10-prelude/src/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/10-prelude/src/Main.h -------------------------------------------------------------------------------- /tests/10-prelude/src/Main.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/10-prelude/src/Main.purs -------------------------------------------------------------------------------- /tests/11-effects/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/11-effects/Makefile -------------------------------------------------------------------------------- /tests/11-effects/spago.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/11-effects/spago.dhall -------------------------------------------------------------------------------- /tests/11-effects/src/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/11-effects/src/Main.h -------------------------------------------------------------------------------- /tests/11-effects/src/Main.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/11-effects/src/Main.purs -------------------------------------------------------------------------------- /tests/12-rec-fns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/12-rec-fns/Makefile -------------------------------------------------------------------------------- /tests/12-rec-fns/spago.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/12-rec-fns/spago.dhall -------------------------------------------------------------------------------- /tests/12-rec-fns/src/Main.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/12-rec-fns/src/Main.purs -------------------------------------------------------------------------------- /tests/main.stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/tests/main.stub.c -------------------------------------------------------------------------------- /upstream/tests/purs/passing/1110.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/1110.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/1185.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/1185.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/1335.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/1335.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/1570.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/1570.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/1664.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/1664.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/1697.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/1697.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/1807.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/1807.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/1881.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/1881.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/1991.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/1991.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/2018.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/2018.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/2018/A.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/2018/A.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/2018/B.purs: -------------------------------------------------------------------------------- 1 | module B where 2 | 3 | data Foo = X | Y 4 | -------------------------------------------------------------------------------- /upstream/tests/purs/passing/2049.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/2049.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/2136.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/2136.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/2138.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/2138.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/2138/Lib.purs: -------------------------------------------------------------------------------- 1 | module Lib (A(..), A) where 2 | 3 | data A = B | C 4 | -------------------------------------------------------------------------------- /upstream/tests/purs/passing/2172.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/2172.c -------------------------------------------------------------------------------- /upstream/tests/purs/passing/2172.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/2172.h -------------------------------------------------------------------------------- /upstream/tests/purs/passing/2172.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/2172.js -------------------------------------------------------------------------------- /upstream/tests/purs/passing/2172.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/2172.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/2197-1.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/2197-1.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/2197-2.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/2197-2.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/2252.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/2252.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/2288.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/2288.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/2378.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/2378.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/2438.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/2438.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/2609.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/2609.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/2609/Eg.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/2609/Eg.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/2616.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/2616.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/2626.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/2626.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/2663.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/2663.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/2689.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/2689.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/2756.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/2756.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/2787.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/2787.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/2795.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/2795.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/2803.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/2803.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/2806.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/2806.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/2947.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/2947.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/2958.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/2958.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/2972.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/2972.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/3114.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/3114.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/3114/VendoredVariant.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/3114/VendoredVariant.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/3125.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/3125.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/3187-UnusedNameClash.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/3187-UnusedNameClash.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/652.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/652.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/810.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/810.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/862.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/862.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/922.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/922.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Ado.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Ado.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/AppendInReverse.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/AppendInReverse.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Applicative.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Applicative.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ArrayType.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ArrayType.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Auto.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Auto.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/AutoPrelude.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/AutoPrelude.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/AutoPrelude2.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/AutoPrelude2.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/BindersInFunctions.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/BindersInFunctions.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/BindingGroups.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/BindingGroups.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/BlockString.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/BlockString.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/CaseInDo.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/CaseInDo.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/CaseInputWildcard.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/CaseInputWildcard.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/CaseMultipleExpressions.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/CaseMultipleExpressions.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/CaseStatement.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/CaseStatement.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/CheckFunction.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/CheckFunction.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/CheckSynonymBug.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/CheckSynonymBug.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/CheckTypeClass.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/CheckTypeClass.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Church.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Church.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ClassRefSyntax.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ClassRefSyntax.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ClassRefSyntax/Lib.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ClassRefSyntax/Lib.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Collatz.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Collatz.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Comparisons.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Comparisons.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Conditional.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Conditional.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Console.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Console.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ConstraintInference.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ConstraintInference.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ConstraintParens.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ConstraintParens.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ConstraintParsingIssue.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ConstraintParsingIssue.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ContextSimplification.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ContextSimplification.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/DataAndType.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/DataAndType.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/DataConsClassConsOverlapOk.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/DataConsClassConsOverlapOk.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/DctorName.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/DctorName.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/DctorOperatorAlias.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/DctorOperatorAlias.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/DctorOperatorAlias/List.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/DctorOperatorAlias/List.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/DeepArrayBinder.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/DeepArrayBinder.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/DeepCase.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/DeepCase.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/DeriveNewtype.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/DeriveNewtype.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/DeriveWithNestedSynonyms.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/DeriveWithNestedSynonyms.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Deriving.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Deriving.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/DerivingFunctor.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/DerivingFunctor.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Do.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Do.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Dollar.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Dollar.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/DuplicateProperties.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/DuplicateProperties.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/EffFn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/EffFn.c -------------------------------------------------------------------------------- /upstream/tests/purs/passing/EffFn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/EffFn.h -------------------------------------------------------------------------------- /upstream/tests/purs/passing/EffFn.js: -------------------------------------------------------------------------------- 1 | exports.add3 = function (a,b,c) { return a + b + c; }; -------------------------------------------------------------------------------- /upstream/tests/purs/passing/EffFn.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/EffFn.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/EmptyDataDecls.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/EmptyDataDecls.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/EmptyRow.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/EmptyRow.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/EmptyTypeClass.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/EmptyTypeClass.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/EntailsKindedType.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/EntailsKindedType.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Eq1Deriving.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Eq1Deriving.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Eq1InEqDeriving.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Eq1InEqDeriving.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/EqOrd.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/EqOrd.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ExplicitImportReExport.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ExplicitImportReExport.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ExplicitImportReExport/Bar.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ExplicitImportReExport/Bar.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ExplicitImportReExport/Foo.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ExplicitImportReExport/Foo.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ExplicitOperatorSections.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ExplicitOperatorSections.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ExportExplicit.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ExportExplicit.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ExportExplicit/M1.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ExportExplicit/M1.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ExportExplicit2.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ExportExplicit2.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ExportExplicit2/M1.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ExportExplicit2/M1.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ExportedInstanceDeclarations.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ExportedInstanceDeclarations.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ExtendedInfixOperators.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ExtendedInfixOperators.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Fib.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Fib.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/FieldConsPuns.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/FieldConsPuns.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/FieldPuns.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/FieldPuns.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/FinalTagless.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/FinalTagless.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ForeignKind.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ForeignKind.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ForeignKind/Lib.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ForeignKind/Lib.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/FunWithFunDeps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/FunWithFunDeps.c -------------------------------------------------------------------------------- /upstream/tests/purs/passing/FunWithFunDeps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/FunWithFunDeps.h -------------------------------------------------------------------------------- /upstream/tests/purs/passing/FunWithFunDeps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/FunWithFunDeps.js -------------------------------------------------------------------------------- /upstream/tests/purs/passing/FunWithFunDeps.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/FunWithFunDeps.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/FunctionScope.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/FunctionScope.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/FunctionalDependencies.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/FunctionalDependencies.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Functions.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Functions.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Functions2.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Functions2.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Generalization1.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Generalization1.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/GenericsRep.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/GenericsRep.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Guards.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Guards.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/HasOwnProperty.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/HasOwnProperty.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/HoistError.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/HoistError.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/IfThenElseMaybe.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/IfThenElseMaybe.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/IfWildcard.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/IfWildcard.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ImplicitEmptyImport.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ImplicitEmptyImport.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ImportExplicit.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ImportExplicit.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ImportExplicit/M1.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ImportExplicit/M1.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ImportHiding.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ImportHiding.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ImportQualified.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ImportQualified.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ImportQualified/M1.purs: -------------------------------------------------------------------------------- 1 | module M1 where 2 | 3 | log x = x 4 | -------------------------------------------------------------------------------- /upstream/tests/purs/passing/InferRecFunWithConstrainedArgument.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/InferRecFunWithConstrainedArgument.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/InstanceBeforeClass.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/InstanceBeforeClass.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/InstanceChain.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/InstanceChain.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/InstanceSigs.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/InstanceSigs.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/InstanceSigsGeneral.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/InstanceSigsGeneral.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/IntAndChar.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/IntAndChar.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/JSReserved.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/JSReserved.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/KindedType.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/KindedType.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/LargeSumType.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/LargeSumType.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Let.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Let.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Let2.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Let2.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/LetInInstance.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/LetInInstance.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/LetPattern.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/LetPattern.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/LiberalTypeSynonyms.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/LiberalTypeSynonyms.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/MPTCs.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/MPTCs.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Match.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Match.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Module.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Module.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Module/M1.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Module/M1.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Module/M2.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Module/M2.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ModuleDeps.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ModuleDeps.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ModuleDeps/M1.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ModuleDeps/M1.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ModuleDeps/M2.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ModuleDeps/M2.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ModuleDeps/M3.purs: -------------------------------------------------------------------------------- 1 | module M3 where 2 | 3 | baz = 1 4 | -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ModuleExport.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ModuleExport.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ModuleExport/A.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ModuleExport/A.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ModuleExportDupes.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ModuleExportDupes.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ModuleExportDupes/A.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ModuleExportDupes/A.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ModuleExportDupes/B.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ModuleExportDupes/B.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ModuleExportDupes/C.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ModuleExportDupes/C.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ModuleExportExcluded.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ModuleExportExcluded.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ModuleExportExcluded/A.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ModuleExportExcluded/A.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ModuleExportQualified.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ModuleExportQualified.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ModuleExportQualified/A.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ModuleExportQualified/A.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ModuleExportSelf.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ModuleExportSelf.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ModuleExportSelf/A.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ModuleExportSelf/A.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Monad.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Monad.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/MonadState.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/MonadState.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/MultiArgFunctions.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/MultiArgFunctions.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/MutRec.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/MutRec.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/MutRec2.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/MutRec2.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/MutRec3.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/MutRec3.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/NakedConstraint.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/NakedConstraint.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/NamedPatterns.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/NamedPatterns.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/NegativeBinder.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/NegativeBinder.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/NegativeIntInRange.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/NegativeIntInRange.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Nested.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Nested.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/NestedRecordUpdate.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/NestedRecordUpdate.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/NestedRecordUpdateWildcards.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/NestedRecordUpdateWildcards.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/NestedTypeSynonyms.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/NestedTypeSynonyms.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/NestedWhere.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/NestedWhere.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/NewConsClass.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/NewConsClass.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Newtype.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Newtype.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/NewtypeClass.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/NewtypeClass.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/NewtypeEff.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/NewtypeEff.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/NewtypeInstance.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/NewtypeInstance.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/NewtypeWithRecordUpdate.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/NewtypeWithRecordUpdate.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/NonConflictingExports.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/NonConflictingExports.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/NonConflictingExports/A.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/NonConflictingExports/A.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/NonOrphanInstanceFunDepExtra.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/NonOrphanInstanceFunDepExtra.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/NonOrphanInstanceFunDepExtra/Lib.purs: -------------------------------------------------------------------------------- 1 | module Lib where 2 | -- covering sets: {{f, l}} 3 | class C f l r | l -> r 4 | data L 5 | -------------------------------------------------------------------------------- /upstream/tests/purs/passing/NonOrphanInstanceMulti.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/NonOrphanInstanceMulti.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/NonOrphanInstanceMulti/Lib.purs: -------------------------------------------------------------------------------- 1 | module Lib where 2 | -- covering sets: {{l, r}} 3 | class C l r 4 | data R 5 | -------------------------------------------------------------------------------- /upstream/tests/purs/passing/NumberLiterals.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/NumberLiterals.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ObjectGetter.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ObjectGetter.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ObjectSynonym.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ObjectSynonym.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ObjectUpdate.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ObjectUpdate.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ObjectUpdate2.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ObjectUpdate2.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ObjectUpdater.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ObjectUpdater.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ObjectWildcards.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ObjectWildcards.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Objects.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Objects.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/OneConstructor.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/OneConstructor.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/OperatorAlias.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/OperatorAlias.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/OperatorAliasElsewhere.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/OperatorAliasElsewhere.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/OperatorAliasElsewhere/Def.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/OperatorAliasElsewhere/Def.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/OperatorAssociativity.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/OperatorAssociativity.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/OperatorInlining.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/OperatorInlining.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/OperatorSections.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/OperatorSections.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Operators.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Operators.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Operators/Other.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Operators/Other.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/OptimizerBug.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/OptimizerBug.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/OptionalQualified.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/OptionalQualified.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Ord1Deriving.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Ord1Deriving.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Ord1InOrdDeriving.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Ord1InOrdDeriving.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ParensInType.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ParensInType.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ParensInTypedBinder.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ParensInTypedBinder.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/PartialFunction.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/PartialFunction.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Patterns.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Patterns.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/PendingConflictingImports.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/PendingConflictingImports.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/PendingConflictingImports/A.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/PendingConflictingImports/A.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/PendingConflictingImports/B.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/PendingConflictingImports/B.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/PendingConflictingImports2.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/PendingConflictingImports2.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/PendingConflictingImports2/A.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/PendingConflictingImports2/A.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Person.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Person.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/PolyLabels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/PolyLabels.c -------------------------------------------------------------------------------- /upstream/tests/purs/passing/PolyLabels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/PolyLabels.h -------------------------------------------------------------------------------- /upstream/tests/purs/passing/PolyLabels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/PolyLabels.js -------------------------------------------------------------------------------- /upstream/tests/purs/passing/PolyLabels.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/PolyLabels.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/PrimedTypeName.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/PrimedTypeName.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/QualifiedNames.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/QualifiedNames.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/QualifiedNames/Either.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/QualifiedNames/Either.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/QualifiedQualifiedImports.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/QualifiedQualifiedImports.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Rank2Object.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Rank2Object.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Rank2TypeSynonym.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Rank2TypeSynonym.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Rank2Types.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Rank2Types.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ReExportQualified.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ReExportQualified.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ReExportQualified/A.purs: -------------------------------------------------------------------------------- 1 | module A where 2 | 3 | x = "Do" 4 | -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ReExportQualified/B.purs: -------------------------------------------------------------------------------- 1 | module B where 2 | 3 | y = "ne" 4 | -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ReExportQualified/C.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ReExportQualified/C.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/RebindableSyntax.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/RebindableSyntax.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Recursion.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Recursion.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/RedefinedFixity.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/RedefinedFixity.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/RedefinedFixity/M1.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/RedefinedFixity/M1.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/RedefinedFixity/M2.purs: -------------------------------------------------------------------------------- 1 | module M2 where 2 | 3 | import M1 4 | -------------------------------------------------------------------------------- /upstream/tests/purs/passing/RedefinedFixity/M3.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/RedefinedFixity/M3.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ReservedWords.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ReservedWords.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ResolvableScopeConflict.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ResolvableScopeConflict.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ResolvableScopeConflict/A.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ResolvableScopeConflict/A.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ResolvableScopeConflict/B.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ResolvableScopeConflict/B.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ResolvableScopeConflict2.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ResolvableScopeConflict2.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ResolvableScopeConflict2/A.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ResolvableScopeConflict2/A.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ResolvableScopeConflict3.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ResolvableScopeConflict3.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ResolvableScopeConflict3/A.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ResolvableScopeConflict3/A.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/RowConstructors.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/RowConstructors.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/RowInInstanceHeadDetermined.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/RowInInstanceHeadDetermined.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/RowLacks.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/RowLacks.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/RowNub.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/RowNub.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/RowPolyInstanceContext.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/RowPolyInstanceContext.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/RowUnion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/RowUnion.c -------------------------------------------------------------------------------- /upstream/tests/purs/passing/RowUnion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/RowUnion.h -------------------------------------------------------------------------------- /upstream/tests/purs/passing/RowUnion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/RowUnion.js -------------------------------------------------------------------------------- /upstream/tests/purs/passing/RowUnion.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/RowUnion.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/RowsInInstanceContext.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/RowsInInstanceContext.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/RunFnInline.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/RunFnInline.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/RuntimeScopeIssue.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/RuntimeScopeIssue.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ScopedTypeVariables.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ScopedTypeVariables.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Sequence.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Sequence.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/SequenceDesugared.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/SequenceDesugared.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ShadowedModuleName.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ShadowedModuleName.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ShadowedModuleName/Test.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ShadowedModuleName/Test.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ShadowedName.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ShadowedName.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ShadowedRename.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ShadowedRename.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ShadowedTCO.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ShadowedTCO.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/ShadowedTCOLet.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/ShadowedTCOLet.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/SignedNumericLiterals.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/SignedNumericLiterals.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/SolvingAppendSymbol.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/SolvingAppendSymbol.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/SolvingCompareSymbol.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/SolvingCompareSymbol.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/SolvingIsSymbol.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/SolvingIsSymbol.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/SolvingIsSymbol/Lib.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/SolvingIsSymbol/Lib.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Stream.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Stream.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/StringEdgeCases.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/StringEdgeCases.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/StringEdgeCases/Records.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/StringEdgeCases/Records.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/StringEdgeCases/Symbols.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/StringEdgeCases/Symbols.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/StringEscapes.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/StringEscapes.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Superclasses1.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Superclasses1.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Superclasses3.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Superclasses3.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/TCO.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/TCO.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/TCOCase.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/TCOCase.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/TailCall.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/TailCall.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Tick.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Tick.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/TopLevelCase.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/TopLevelCase.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/TransitiveImport.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/TransitiveImport.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/TransitiveImport/Middle.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/TransitiveImport/Middle.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/TransitiveImport/Test.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/TransitiveImport/Test.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/TypeClassMemberOrderChange.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/TypeClassMemberOrderChange.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/TypeClasses.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/TypeClasses.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/TypeClassesInOrder.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/TypeClassesInOrder.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/TypeClassesWithOverlappingTypeVariables.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/TypeClassesWithOverlappingTypeVariables.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/TypeDecl.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/TypeDecl.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/TypeOperators.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/TypeOperators.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/TypeOperators/A.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/TypeOperators/A.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/TypeSynonymInData.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/TypeSynonymInData.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/TypeSynonyms.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/TypeSynonyms.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/TypeWildcards.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/TypeWildcards.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/TypeWildcardsRecordExtension.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/TypeWildcardsRecordExtension.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/TypeWithoutParens.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/TypeWithoutParens.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/TypeWithoutParens/Lib.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/TypeWithoutParens/Lib.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/TypedBinders.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/TypedBinders.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/TypedWhere.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/TypedWhere.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/UTF8Sourcefile.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/UTF8Sourcefile.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/UnderscoreIdent.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/UnderscoreIdent.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/UnicodeIdentifier.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/UnicodeIdentifier.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/UnicodeOperators.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/UnicodeOperators.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/UnicodeType.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/UnicodeType.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/UnifyInTypeInstanceLookup.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/UnifyInTypeInstanceLookup.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Unit.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Unit.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/UnknownInTypeClassLookup.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/UnknownInTypeClassLookup.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/UnsafeCoerce.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/UnsafeCoerce.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/UntupledConstraints.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/UntupledConstraints.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/UsableTypeClassMethods.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/UsableTypeClassMethods.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/Where.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/Where.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/WildcardInInstance.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/WildcardInInstance.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/WildcardType.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/WildcardType.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/iota.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/iota.purs -------------------------------------------------------------------------------- /upstream/tests/purs/passing/s.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/purs/passing/s.purs -------------------------------------------------------------------------------- /upstream/tests/support/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/support/.gitignore -------------------------------------------------------------------------------- /upstream/tests/support/spago.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/upstream/tests/support/spago.dhall -------------------------------------------------------------------------------- /vendor/asprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/vendor/asprintf.h -------------------------------------------------------------------------------- /vendor/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/vendor/utf8.h -------------------------------------------------------------------------------- /vendor/uthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/vendor/uthash.h -------------------------------------------------------------------------------- /vendor/vec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/vendor/vec.c -------------------------------------------------------------------------------- /vendor/vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-c/purec/HEAD/vendor/vec.h --------------------------------------------------------------------------------