-
Notifications
You must be signed in to change notification settings - Fork 323
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
Change "Override Execution Context" button to "Record" button on nodes #9188
Conversation
@farmaazon you mentioned you might have wanted to take a look at this |
Primary subject is still wrong, and toggling recording may still be broken
@AdRiley just a heads up: i've decided to remove support for the old behavior, since it doesn't really work well with the refactors. |
Move tests to their own files, for consistency None
man, whatever happened here? |
oh i guess i messed up the merge... |
f42f0d2
to
6bf8153
Compare
✅ QA passed
|
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.
LGTM
export function initializePrefixes() { | ||
prefixes = makePrefixes() | ||
} |
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.
If this must be called after initializeFFI
we could encode that in the type system by making initializeFFI
return a value that can't be constructed otherwise, and make that value an argument of this function.
But that might be overkill.
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.
yeah, i'm going to consider it as overkill for now. although it wouldn't be difficult to do it, it doesn't really match up with the rest of the codebase IMO.
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.
i mean, realistically in the actual app, both are called in the entrypoint in the correct order. so i don't think omitting it would be too big of a deal since there's only one place where they're called.
Pull Request Description
Important Notes
None
Screenshot
Checklist
Please ensure that the following checklist has been satisfied before submitting the PR:
The documentation has been updated, if necessary.Scala,
Java,
and
Rust
style guides. In case you are using a language not listed above, follow the Rust style guide.
Unit tests have been written where possible.If GUI codebase was changed, the GUI was tested when built using./run ide build
.