Skip to content

Commit

Permalink
Fix accessibility
Browse files Browse the repository at this point in the history
  • Loading branch information
ktanaka101 committed Jul 27, 2020
1 parent a922dd1 commit 4fd5376
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/vm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ mod preludes {

use preludes::*;

const STACK_SIZE: usize = 2048;
pub const STACK_SIZE: usize = 2048;
pub const GLOBALS_SIZE: usize = 65536;

const TRUE: object::Boolean = object::Boolean { value: true };
const FALSE: object::Boolean = object::Boolean { value: false };
const NULL: object::Null = object::Null {};
Expand Down

0 comments on commit 4fd5376

Please sign in to comment.