mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 22:34:45 +00:00
wip
This commit is contained in:
parent
42e3d35564
commit
887ec9860a
13 changed files with 83 additions and 179 deletions
9
compiler/module/src/low_level.rs
Normal file
9
compiler/module/src/low_level.rs
Normal file
|
@ -0,0 +1,9 @@
|
|||
use crate::symbol::Symbol;
|
||||
|
||||
/// Low-level operations that get translated directly into e.g. LLVM instructions.
|
||||
/// These are always wrapped when exposed to end users, and can only make it
|
||||
/// into an Expr when added directly by can::builtins
|
||||
#[derive(Clone, Debug, PartialEq)]
|
||||
pub enum LowLevel {
|
||||
ListLen { arg_from_scope: Symbol },
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue