Navigation Menu

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement leftmost insert #15

Closed
wants to merge 65 commits into from
Closed

Implement leftmost insert #15

wants to merge 65 commits into from

Conversation

jchris
Copy link
Collaborator

@jchris jchris commented Mar 14, 2023

this one is probably worth you review. it's still AI assisted but at I did a better job directing it

@jchris

This comment was marked as resolved.

src/base.js Outdated

// then delete
throw new Error('Not Implemented :(')
}

This comment was marked as outdated.

src/base.js Outdated
encodeNode () {
const list = this.entryList.entries.map((entry) => entry.encodeNode())
async encodeNode () {
const list = await Promise.all(this.entryList.entries.map(async (entry) => await entry.encodeNode()))
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I checked and applying this change to main makes no difference to test passing

@jchris jchris changed the title Ai2 Implement leftmost insert Mar 22, 2023
@jchris jchris mentioned this pull request Mar 22, 2023
@jchris
Copy link
Collaborator Author

jchris commented Mar 24, 2023

fixed in #18

@jchris jchris closed this Mar 24, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants