Skip to content

Commit

Permalink
feat: register keyboard table in internal methods
Browse files Browse the repository at this point in the history
  • Loading branch information
yazaldefilimone committed Aug 28, 2023
1 parent 82638ad commit 512c544
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/evaluator/object/internal.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import { InternalBoolean, InternalNull } from "evaluator/object";
import { keyboardTable } from "./builtin";

export const internal = {
TRUE: new InternalBoolean(true),
FALSE: new InternalBoolean(false),
NULL: new InternalNull(),
keyboardTable: keyboardTable,
};

0 comments on commit 512c544

Please sign in to comment.