Skip to content

Commit

Permalink
arrays!
Browse files Browse the repository at this point in the history
  • Loading branch information
Autoparallel committed Aug 14, 2024
1 parent caa4941 commit 17f1105
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions circuits/test/parser/values.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ describe("StateUpdate :: Values", () => {
inside_number.parsing_number = 1;
inside_number.byte = Delimiters.COMMA;
let inside_number_out = { ...INITIAL_OUT };
inside_number_out.next_pointer = 2;
inside_number_out.next_stack = [[1, 0], [3, 0], [0, 0], [0, 0]];
inside_number_out.next_pointer = 1;
inside_number_out.next_stack = [[1, 0], [0, 0], [0, 0], [0, 0]];
generatePassCase(inside_number, inside_number_out, ">>>> `,` read");

// TODO: Note that reading a space while reading a number will not throw an error!
Expand Down
2 changes: 1 addition & 1 deletion notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
### JSON Types
- [x] Object
- [x] String
- [ ] Array (PARTIALLY COMPLETED, TODO: Need to parse internally)
- [x] Array
- [x] Number
- [ ] Boolean
- [ ] Null
Expand Down

0 comments on commit 17f1105

Please sign in to comment.