Skip to content

Commit

Permalink
Move all the facet sources around.
Browse files Browse the repository at this point in the history
  • Loading branch information
robrix committed Oct 20, 2020
1 parent db93a5e commit 35cf6ee
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
@@ -1,6 +1,6 @@
# NB: this file and its syntax is entirely aspirational.

Base.Bool : Module
Data.Bool : Module
{ # fixme: it’d be nice to drop the curly braces in module syntax; maybe dropping the curly braces means it just extends to the rest of the current branch?

# fixme: how do we control the implicit scope? should there even be any? where do e.g. Type & Module come from?
Expand Down
2 changes: 1 addition & 1 deletion src/Base/Bool.facet → src/Data/Bool.facet
@@ -1,4 +1,4 @@
Base.Bool : Module
Data.Bool : Module
{

Bool : Type
Expand Down
2 changes: 1 addition & 1 deletion src/Base/Function.facet → src/Data/Function.facet
@@ -1,6 +1,6 @@
# NB: this file and its syntax is entirely aspirational.

Base.Function : Module
Data.Function : Module
{

id
Expand Down
2 changes: 1 addition & 1 deletion src/Base/List.facet → src/Data/List.facet
@@ -1,4 +1,4 @@
Base.List
Data.List
: Module
{

Expand Down
2 changes: 1 addition & 1 deletion src/Base/Option.facet → src/Data/Option.facet
@@ -1,4 +1,4 @@
Base.Option
Data.Option
: Module
{

Expand Down
2 changes: 1 addition & 1 deletion src/Base/Unit.facet → src/Data/Unit.facet
@@ -1,4 +1,4 @@
Base.Unit : Module
Data.Unit : Module
{

Unit : Type
Expand Down
2 changes: 1 addition & 1 deletion src/Base/Map.facet → src/Interface/Map.facet
@@ -1,4 +1,4 @@
Base.Map : Module
Interface.Map : Module
{

Map : (F : Type -> Type) -> Type # FIXME: this should be Interface or something
Expand Down
2 changes: 1 addition & 1 deletion src/Effect/Reader.facet → src/Interface/Reader.facet
@@ -1,6 +1,6 @@
# NB: this file and its syntax is entirely aspirational.

Effect.Reader : Module
Interface.Reader : Module
{

Reader : (R : Type) -> Interface
Expand Down
6 changes: 3 additions & 3 deletions src/Effect/State.facet → src/Interface/State.facet
@@ -1,6 +1,6 @@
Effect.State
: [ Base.Pair
, Base.Unit ]
Interface.State
: [ Data.Pair
, Data.Unit ]
Module
{

Expand Down

0 comments on commit 35cf6ee

Please sign in to comment.