Skip to content

Commit

Permalink
remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
bcpeinhardt committed Nov 24, 2024
1 parent fb3ee0e commit 4b9ced2
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 23 deletions.
30 changes: 15 additions & 15 deletions priv/static/squared_away.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5463,7 +5463,7 @@ function interpret(loop$env, loop$expr) {
throw makeError(
"let_assert",
"squared_away/squared_away_lang/interpreter",
134,
132,
"",
"Pattern match failed, no pattern matched the value.",
{ value: $ }
Expand All @@ -5479,7 +5479,7 @@ function interpret(loop$env, loop$expr) {
throw makeError(
"let_assert",
"squared_away/squared_away_lang/interpreter",
138,
136,
"",
"Pattern match failed, no pattern matched the value.",
{ value: $ }
Expand Down Expand Up @@ -5614,7 +5614,7 @@ function interpret(loop$env, loop$expr) {
throw makeError(
"let_assert",
"squared_away/squared_away_lang/interpreter",
220,
218,
"",
"Pattern match failed, no pattern matched the value.",
{ value: v }
Expand All @@ -5635,7 +5635,7 @@ function interpret(loop$env, loop$expr) {
throw makeError(
"let_assert",
"squared_away/squared_away_lang/interpreter",
228,
226,
"",
"Pattern match failed, no pattern matched the value.",
{ value: v }
Expand All @@ -5656,7 +5656,7 @@ function interpret(loop$env, loop$expr) {
throw makeError(
"let_assert",
"squared_away/squared_away_lang/interpreter",
236,
234,
"",
"Pattern match failed, no pattern matched the value.",
{ value: v }
Expand Down Expand Up @@ -6859,7 +6859,7 @@ function typecheck(env, expr) {
throw makeError(
"let_assert",
"squared_away/squared_away_lang/typechecker",
21,
20,
"typecheck",
"Pattern match failed, no pattern matched the value.",
{ value: key }
Expand Down Expand Up @@ -6923,7 +6923,7 @@ function typecheck(env, expr) {
throw makeError(
"let_assert",
"squared_away/squared_away_lang/typechecker",
59,
58,
"",
"Pattern match failed, no pattern matched the value.",
{ value: i }
Expand Down Expand Up @@ -6956,7 +6956,7 @@ function typecheck(env, expr) {
throw makeError(
"let_assert",
"squared_away/squared_away_lang/typechecker",
76,
75,
"",
"Pattern match failed, no pattern matched the value.",
{ value: t2 }
Expand Down Expand Up @@ -8296,7 +8296,7 @@ function update(model, msg) {
throw makeError(
"let_assert",
"squared_away",
207,
206,
"",
"Pattern match failed, no pattern matched the value.",
{ value: maybe_expr }
Expand All @@ -8311,7 +8311,7 @@ function update(model, msg) {
throw makeError(
"let_assert",
"squared_away",
215,
214,
"",
"Pattern match failed, no pattern matched the value.",
{ value: $ }
Expand All @@ -8338,7 +8338,7 @@ function update(model, msg) {
throw makeError(
"let_assert",
"squared_away",
235,
234,
"",
"Pattern match failed, no pattern matched the value.",
{ value: $1 }
Expand Down Expand Up @@ -8397,7 +8397,7 @@ function update(model, msg) {
throw makeError(
"let_assert",
"squared_away",
275,
274,
"",
"Pattern match failed, no pattern matched the value.",
{ value: maybe_expr }
Expand All @@ -8412,7 +8412,7 @@ function update(model, msg) {
throw makeError(
"let_assert",
"squared_away",
280,
279,
"",
"Pattern match failed, no pattern matched the value.",
{ value: $ }
Expand All @@ -8439,7 +8439,7 @@ function update(model, msg) {
throw makeError(
"let_assert",
"squared_away",
299,
298,
"",
"Pattern match failed, no pattern matched the value.",
{ value: $1 }
Expand Down Expand Up @@ -8518,7 +8518,7 @@ function main() {
throw makeError(
"let_assert",
"squared_away",
32,
31,
"main",
"Pattern match failed, no pattern matched the value.",
{ value: $ }
Expand Down
3 changes: 1 addition & 2 deletions src/squared_away.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ import gleam/list
import gleam/option.{type Option, None, Some}
import gleam/pair
import gleam/result
import gleam/string
import lustre
import lustre/attribute.{class}
import lustre/attribute
import lustre/effect
import lustre/element
import lustre/element/html
Expand Down
4 changes: 1 addition & 3 deletions src/squared_away/squared_away_lang/interpreter.gleam
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import gleam/float
import gleam/int
import gleam/io
import gleam/list.{Continue, Stop}
import gleam/option.{None, Some}
import gleam/list
import gleam/result
import squared_away/squared_away_lang/error
import squared_away/squared_away_lang/grid
Expand Down
1 change: 0 additions & 1 deletion src/squared_away/squared_away_lang/typechecker.gleam
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import gleam/bool
import gleam/int
import gleam/io
import gleam/list.{Continue, Stop}
import gleam/option.{None, Some}
import gleam/result
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import gleam/float
import gleam/int
import gleam/list
import gleam/set
import gleam/string
import squared_away/squared_away_lang/grid
import squared_away/squared_away_lang/parser/expr
Expand Down

0 comments on commit 4b9ced2

Please sign in to comment.