File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
- export * from "./ast.ts"
2
- export * from "./node.ts"
3
- export * from "./token.ts"
1
+ export * from "./ast.ts" ;
2
+ export * from "./node.ts" ;
3
+ export * from "./token.ts" ;
Original file line number Diff line number Diff line change 1
- import dbg from "../../debug.js" ;
2
- import { Token } from "../../types .ts" ;
1
+ import dbg from "../../debug/debug .js" ;
2
+ import { Token } from "../../ast/mod .ts" ;
3
3
4
4
let debug = dbg ( "lex" ) ;
5
5
Original file line number Diff line number Diff line change 1
- import dbg from "../../debug.js" ;
1
+ import dbg from "../../debug/debug .js" ;
2
2
let debug = dbg ( "parse" ) ;
3
3
4
4
import { lex } from "../lexer/lexer.ts" ;
5
- import { AST , Token } from "../../types .ts" ;
5
+ import { AST , Token } from "../../ast/mod .ts" ;
6
6
7
7
var _comments : boolean ; // Whether comments are allowed.
8
8
var _depth : number ; // Current block nesting depth.
Original file line number Diff line number Diff line change 1
1
function debug ( label ) {
2
- return _debug . bind ( null , label ) ;
2
+ return _debug . bind ( null , label ) ;
3
3
}
4
4
5
5
function _debug ( label ) {
You can’t perform that action at this time.
0 commit comments