diff --git a/compiler/forget/src/HIR/BuildHIR.ts b/compiler/forget/src/HIR/BuildHIR.ts index 1ef205d573..55a6839fef 100644 --- a/compiler/forget/src/HIR/BuildHIR.ts +++ b/compiler/forget/src/HIR/BuildHIR.ts @@ -9,7 +9,7 @@ import { NodePath, Scope } from "@babel/traverse"; import * as t from "@babel/types"; import invariant from "invariant"; import { CompilerError, ErrorSeverity } from "../CompilerError"; -import { Err, Ok, Result } from "../lib/Result"; +import { Err, Ok, Result } from "../Utils/Result"; import { assertExhaustive } from "../Utils/utils"; import { BlockId, diff --git a/compiler/forget/src/lib/Result.ts b/compiler/forget/src/Utils/Result.ts similarity index 100% rename from compiler/forget/src/lib/Result.ts rename to compiler/forget/src/Utils/Result.ts diff --git a/compiler/forget/src/__tests__/Result-test.ts b/compiler/forget/src/__tests__/Result-test.ts index 5d6fa40d8b..f1e8fbc480 100644 --- a/compiler/forget/src/__tests__/Result-test.ts +++ b/compiler/forget/src/__tests__/Result-test.ts @@ -1,4 +1,4 @@ -import { Err, Ok, Result } from "../lib/Result"; +import { Err, Ok, Result } from "../Utils/Result"; function addMax10(a: number, b: number): Result { const n = a + b;