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" ;
33
44let debug = dbg ( "lex" ) ;
55
Original file line number Diff line number Diff line change 1- import dbg from "../../debug.js" ;
1+ import dbg from "../../debug/debug .js" ;
22let debug = dbg ( "parse" ) ;
33
44import { lex } from "../lexer/lexer.ts" ;
5- import { AST , Token } from "../../types .ts" ;
5+ import { AST , Token } from "../../ast/mod .ts" ;
66
77var _comments : boolean ; // Whether comments are allowed.
88var _depth : number ; // Current block nesting depth.
Original file line number Diff line number Diff line change 11function debug ( label ) {
2- return _debug . bind ( null , label ) ;
2+ return _debug . bind ( null , label ) ;
33}
44
55function _debug ( label ) {
You can’t perform that action at this time.
0 commit comments