Skip to content

Commit

Permalink
fix outdated reference paths
Browse files Browse the repository at this point in the history
  • Loading branch information
suchipi committed Nov 6, 2024
1 parent 060187a commit 0c64c59
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/programs/file-to-bytecode/file-to-bytecode.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
// Simple script which reads in a file, converts it to bytecode, and writes out
// the bytecode to a new file.

/// <reference path="../quickjs/quickjs.d.ts" />
/// <reference path="../builtin-modules/quickjs-libc/quickjs-libc.d.ts" />
/// <reference path="../builtin-modules/quickjs-bytecode/quickjs-bytecode.d.ts" />
/// <reference path="../../quickjs/quickjs.d.ts" />
/// <reference path="../../builtin-modules/quickjs-libc/quickjs-libc.d.ts" />
/// <reference path="../../builtin-modules/quickjs-bytecode/quickjs-bytecode.d.ts" />

import * as std from "quickjs:std";
import * as Bytecode from "quickjs:bytecode";
Expand Down
3 changes: 2 additions & 1 deletion src/programs/qjsbootstrap/size_check.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/// <reference path="../quickjs-libc/quickjs-libc.d.ts" />
/// <reference path="../../quickjs/quickjs.d.ts" />
/// <reference path="../../builtin-modules/quickjs-libc/quickjs-libc.d.ts" />
import * as os from "quickjs:os";

const file1 = scriptArgs[2];
Expand Down

0 comments on commit 0c64c59

Please sign in to comment.