Skip to content

Commit

Permalink
refactor: remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
rycont committed Oct 13, 2024
1 parent 460a53c commit 8b25e3b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ import { FileForRunNotExistError } from './error/prepare.ts'
import { Evaluable, ValueTypes } from './node/base.ts'
import { tokenize } from './prepare/tokenize/index.ts'
import { ErrorInModuleError } from './error/index.ts'
import { Executable, Node } from './node/index.ts'
import { printError } from './error/printError.ts'
import { parse } from './prepare/parse/index.ts'
import { YaksokError } from './error/common.ts'
import { Rule } from './prepare/parse/rule.ts'
import { Block, Executable, Node } from './node/index.ts'
import { Params } from './node/function.ts'
import { Scope } from './runtime/scope.ts'
import { run } from './runtime/run.ts'
import { Params } from './node/function.ts'

interface YaksokConfig {
stdout: (message: string) => void
Expand Down
4 changes: 2 additions & 2 deletions node/block.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { CallFrame } from '../runtime/callFrame.ts'
import { Evaluable, Executable, Node } from './index.ts'
import { Scope } from '../runtime/scope.ts'
import { CannotParseError } from '../error/index.ts'
import { Executable, Node } from './index.ts'
import { Scope } from '../runtime/scope.ts'
import { EOL } from './misc.ts'

export class Block extends Executable {
Expand Down

0 comments on commit 8b25e3b

Please sign in to comment.