-
Notifications
You must be signed in to change notification settings - Fork 53
Golemv2 #1390
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
base: main
Are you sure you want to change the base?
Conversation
KCarretto
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix tests and then lgtm. Be sure the regular assets lib still works with imixv2
Summary
Previous Results
Insights
Slowest Tests
🎉 No failed tests in this run. | 🍂 No flaky tests in this run. Github Test Reporter by CTRF 💚 🔄 This comment has been updated |
9067368 to
654f9e3
Compare
| use alloc::vec::Vec; | ||
| use anyhow::anyhow; | ||
| use core::fmt::Debug; | ||
| use eldritch_libassets::std::AssetBackend; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should re-export this in eldritchv2 instead of requiring callers to import specific standard libraries on top of eldritchv2
| use std::fs; | ||
| use std::path::PathBuf; | ||
|
|
||
| const MAX_RECURSION_DEPTH: usize = 10; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can probably safely make this higher?
| use std::io::{self, Write}; | ||
| use std::time::Duration; | ||
|
|
||
| pub fn repl(mut inter: Interpreter) -> io::Result<()> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should definitely move this to the repl crate since it's used by 3+ clients now
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we do that in a separate PR?


What type of PR is this?
/kind feature
What this PR does / why we need it:
Add Golemv2 for use with eldritchv2