fix: Avoid files that differ just by case

This commit is contained in:
Glen Whitney 2022-07-22 09:45:58 -07:00
parent 89f4977e78
commit 664f30ddef
6 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,4 @@
import {numComplex} from './Complex.mjs'
import {numComplex} from './types/Complex.mjs'
export const add = {
'...Complex': [['self'], ref => addends => {

View file

@ -1,4 +1,4 @@
import './Complex.mjs'
import './types/Complex.mjs'
export const complex = {
/* Very permissive for sake of proof-of-concept; would be better to

View file

@ -1,4 +1,4 @@
import './Complex.mjs'
import './types/Complex.mjs'
import * as complex from './complex.mjs'
/* Add all the complex implementations for functions already

View file

@ -1,4 +1,4 @@
import {numComplex} from './Complex.mjs'
import {numComplex} from './types/Complex.mjs'
export const negate = {
Complex: [['self'], ref => z => {
/* need a "base case" to avoid infinite self-reference */