Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 1 addition & 38 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,12 @@
},
"homepage": "https://github.com/indutny/llparse-builder#readme",
"devDependencies": {
"@types/debug": "4.1.5 ",
"@types/node": "^20.16.1",
"borp": "^0.17.0",
"tslint": "^5.20.1",
"typescript": "^5.5.4"
},
"dependencies": {
"binary-search": "^1.3.6",
"debug": "^4.2.0"
"binary-search": "^1.3.6"
}
}
5 changes: 2 additions & 3 deletions src/loop-checker/index.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
import * as assert from 'assert';
import * as debugAPI from 'debug';
import { debuglog } from 'node:util';

import { Node } from '../node';
import { Reachability } from '../reachability';
import { Lattice } from './lattice';

const debug = debugAPI('llparse-builder:loop-checker');
const debug = debuglog('llparse-builder:loop-checker');

const EMPTY_VALUE = new Lattice('empty');
const ANY_VALUE = new Lattice('any');
Expand Down
6 changes: 3 additions & 3 deletions src/span-allocator.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import * as assert from 'assert';
import * as debugAPI from 'debug';
import * as assert from 'node:assert';
import { debuglog } from 'node:util';

import { Node, SpanEnd, SpanStart } from './node';
import { Reachability } from './reachability';
import { Span } from './span';

const debug = debugAPI('llparse-builder:span-allocator');
const debug = debuglog('llparse-builder:span-allocator');

type SpanSet = Set<Span>;

Expand Down