mirror of
https://github.com/danog/parser.git
synced 2024-11-27 04:14:55 +01:00
runtime/bytecode/compiler: remove
This commit is contained in:
parent
f5c3143468
commit
f88e2cd11d
@ -1,7 +0,0 @@
|
||||
[package]
|
||||
name = "trunk_bytecode"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[lib]
|
||||
doctest = false
|
@ -1,11 +0,0 @@
|
||||
pub type Register = usize;
|
||||
|
||||
pub struct Instruction {
|
||||
pub dest: Register,
|
||||
pub code: Code,
|
||||
}
|
||||
|
||||
#[derive(Debug, PartialEq)]
|
||||
pub enum Code {
|
||||
|
||||
}
|
@ -1,12 +0,0 @@
|
||||
[package]
|
||||
name = "trunk_compiler"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
trunk_parser = { path = "../trunk_parser" }
|
||||
|
||||
[lib]
|
||||
doctest = false
|
@ -1,3 +0,0 @@
|
||||
pub fn compile() {
|
||||
|
||||
}
|
@ -1,8 +0,0 @@
|
||||
[package]
|
||||
name = "trunk_runtime"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
@ -1,8 +0,0 @@
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
#[test]
|
||||
fn it_works() {
|
||||
let result = 2 + 2;
|
||||
assert_eq!(result, 4);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user