-
Notifications
You must be signed in to change notification settings - Fork 14
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
Introduce canon
instruction
#292
Conversation
VM-22 Stream canonicalization
There are some instructions that behaviour is highly depended on a stream content (such as |
crates/air-lib/air-parser/src/parser/lexer/call_variable_parser.rs
Outdated
Show resolved
Hide resolved
/// A canonicalized stream with lambda. | ||
#[derive(Debug, PartialEq, Eq, Clone, Serialize, Deserialize)] | ||
pub struct CanonStreamWithLambda<'i> { | ||
pub name: &'i str, |
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.
Generic question not quite related to this PR: Deserialize
without Cow
is very limited. What is its propose on the AST types?
utACK |
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.
utACK
Closes #158.