Skip to content

Commit

Permalink
fix: make null -> object for now
Browse files Browse the repository at this point in the history
  • Loading branch information
jumanji144 committed Sep 25, 2023
1 parent 43850c5 commit 23db2a0
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,9 @@ public void push(ClassType type) {
}

public void pushNull() {
stack.push(NULL);
// TODO: track null state
//stack.push(NULL);
push(OBJECT);
}

public void push(ClassType... types) {
Expand Down

0 comments on commit 23db2a0

Please sign in to comment.