From c39b4a4931eff615bc682e6269b1863b802e3761 Mon Sep 17 00:00:00 2001 From: Tangent Wantwight Date: Fri, 25 Aug 2023 20:38:52 -0400 Subject: [PATCH] Rename parser module --- src/3x5.ts | 2 +- src/{notcl.test.ts => parser.test.ts} | 2 +- src/{notcl.ts => parser.ts} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename src/{notcl.test.ts => parser.test.ts} (99%) rename src/{notcl.ts => parser.ts} (100%) diff --git a/src/3x5.ts b/src/3x5.ts index ed24524..7619ddb 100644 --- a/src/3x5.ts +++ b/src/3x5.ts @@ -1,4 +1,4 @@ -import { parse } from "./notcl"; +import { parse } from "./parser"; /** * Basic unit of information, also an "actor" in the programming system diff --git a/src/notcl.test.ts b/src/parser.test.ts similarity index 99% rename from src/notcl.test.ts rename to src/parser.test.ts index 3134adf..de9d893 100644 --- a/src/notcl.test.ts +++ b/src/parser.test.ts @@ -1,4 +1,4 @@ -import { parse } from "./notcl"; +import { parse } from "./parser"; describe("Parsing Notcl", () => { describe("Commands", () => { diff --git a/src/notcl.ts b/src/parser.ts similarity index 100% rename from src/notcl.ts rename to src/parser.ts