diff options
Diffstat (limited to 'js/baba-yaga/repl.js')
-rw-r--r-- | js/baba-yaga/repl.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/baba-yaga/repl.js b/js/baba-yaga/repl.js index dc53fe5..b9c878d 100644 --- a/js/baba-yaga/repl.js +++ b/js/baba-yaga/repl.js @@ -9,8 +9,8 @@ import fs from 'fs'; import os from 'os'; import { evaluate, makeCodeFrame } from './runner.js'; -import { createLexer } from './lexer.js'; -import { createParser } from './parser.js'; +import { createLexer } from './src/core/lexer.js'; +import { createParser } from './src/core/parser.js'; // Synchronous line input for TTY. Keep it small and dependency-free. function readLineSync(promptText = '') { |